diff --git a/How to/Perform OCR before loading the document/Angular Client/.editorconfig b/How to/Perform OCR before loading the document/Angular Client/.editorconfig
new file mode 100644
index 0000000..59d9a3a
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/.editorconfig
@@ -0,0 +1,16 @@
+# Editor configuration, see https://editorconfig.org
+root = true
+
+[*]
+charset = utf-8
+indent_style = space
+indent_size = 2
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.ts]
+quote_type = single
+
+[*.md]
+max_line_length = off
+trim_trailing_whitespace = false
diff --git a/How to/Perform OCR before loading the document/Angular Client/.gitignore b/How to/Perform OCR before loading the document/Angular Client/.gitignore
new file mode 100644
index 0000000..0711527
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/.gitignore
@@ -0,0 +1,42 @@
+# See http://help.github.com/ignore-files/ for more about ignoring files.
+
+# Compiled output
+/dist
+/tmp
+/out-tsc
+/bazel-out
+
+# Node
+/node_modules
+npm-debug.log
+yarn-error.log
+
+# IDEs and editors
+.idea/
+.project
+.classpath
+.c9/
+*.launch
+.settings/
+*.sublime-workspace
+
+# Visual Studio Code
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+.history/*
+
+# Miscellaneous
+/.angular/cache
+.sass-cache/
+/connect.lock
+/coverage
+/libpeerconnection.log
+testem.log
+/typings
+
+# System files
+.DS_Store
+Thumbs.db
diff --git a/How to/Perform OCR before loading the document/Angular Client/README.md b/How to/Perform OCR before loading the document/Angular Client/README.md
new file mode 100644
index 0000000..b2cbbe3
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/README.md
@@ -0,0 +1,27 @@
+# Getting started
+
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.0.4.
+
+## Development server
+
+Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
+
+## Code scaffolding
+
+Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
+
+## Build
+
+Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
+
+## Running unit tests
+
+Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
+
+## Running end-to-end tests
+
+Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
+
+## Further help
+
+To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
diff --git a/How to/Perform OCR before loading the document/Angular Client/angular.json b/How to/Perform OCR before loading the document/Angular Client/angular.json
new file mode 100644
index 0000000..419ea66
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/angular.json
@@ -0,0 +1,101 @@
+{
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
+ "version": 1,
+ "newProjectRoot": "projects",
+ "projects": {
+ "my-app": {
+ "projectType": "application",
+ "schematics": {},
+ "root": "",
+ "sourceRoot": "src",
+ "prefix": "app",
+ "architect": {
+ "build": {
+ "builder": "@angular-devkit/build-angular:browser",
+ "options": {
+ "outputPath": "dist/my-app",
+ "index": "src/index.html",
+ "main": "src/main.ts",
+ "polyfills": [
+ "zone.js"
+ ],
+ "tsConfig": "tsconfig.app.json",
+ "assets": [
+ "src/favicon.ico",
+ "src/assets"
+ ],
+ "styles": [
+ "src/styles.css"
+ ],
+ "scripts": []
+ },
+ "configurations": {
+ "production": {
+ "budgets": [
+ {
+ "type": "initial",
+ "maximumWarning": "500kb",
+ "maximumError": "1mb"
+ },
+ {
+ "type": "anyComponentStyle",
+ "maximumWarning": "2kb",
+ "maximumError": "4kb"
+ }
+ ],
+ "outputHashing": "all"
+ },
+ "development": {
+ "buildOptimizer": false,
+ "optimization": false,
+ "vendorChunk": true,
+ "extractLicenses": false,
+ "sourceMap": true,
+ "namedChunks": true
+ }
+ },
+ "defaultConfiguration": "production"
+ },
+ "serve": {
+ "builder": "@angular-devkit/build-angular:dev-server",
+ "configurations": {
+ "production": {
+ "browserTarget": "my-app:build:production"
+ },
+ "development": {
+ "browserTarget": "my-app:build:development"
+ }
+ },
+ "defaultConfiguration": "development"
+ },
+ "extract-i18n": {
+ "builder": "@angular-devkit/build-angular:extract-i18n",
+ "options": {
+ "browserTarget": "my-app:build"
+ }
+ },
+ "test": {
+ "builder": "@angular-devkit/build-angular:karma",
+ "options": {
+ "polyfills": [
+ "zone.js",
+ "zone.js/testing"
+ ],
+ "tsConfig": "tsconfig.spec.json",
+ "assets": [
+ "src/favicon.ico",
+ "src/assets"
+ ],
+ "styles": [
+ "src/styles.css"
+ ],
+ "scripts": []
+ }
+ }
+ }
+ }
+ },
+ "cli": {
+ "analytics": "8d9c65e2-01c9-4a66-bc68-685c535cc647"
+ }
+}
diff --git a/How to/Perform OCR before loading the document/Angular Client/package.json b/How to/Perform OCR before loading the document/Angular Client/package.json
new file mode 100644
index 0000000..052728f
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/package.json
@@ -0,0 +1,39 @@
+{
+ "name": "my-app",
+ "version": "0.0.0",
+ "scripts": {
+ "ng": "ng",
+ "start": "ng serve",
+ "build": "ng build",
+ "watch": "ng build --watch --configuration development",
+ "test": "ng test"
+ },
+ "private": true,
+ "dependencies": {
+ "@angular/animations": "^15.0.0",
+ "@angular/common": "^15.0.0",
+ "@angular/compiler": "^15.0.0",
+ "@angular/core": "^15.0.0",
+ "@angular/forms": "^15.0.0",
+ "@angular/platform-browser": "^15.0.0",
+ "@angular/platform-browser-dynamic": "^15.0.0",
+ "@angular/router": "^15.0.0",
+ "@syncfusion/ej2-angular-pdfviewer": "*",
+ "rxjs": "~7.5.0",
+ "tslib": "^2.3.0",
+ "zone.js": "~0.12.0"
+ },
+ "devDependencies": {
+ "@angular-devkit/build-angular": "^15.0.4",
+ "@angular/cli": "~15.0.4",
+ "@angular/compiler-cli": "^15.0.0",
+ "@types/jasmine": "~4.3.0",
+ "jasmine-core": "~4.5.0",
+ "karma": "~6.4.0",
+ "karma-chrome-launcher": "~3.1.0",
+ "karma-coverage": "~2.2.0",
+ "karma-jasmine": "~5.1.0",
+ "karma-jasmine-html-reporter": "~2.0.0",
+ "typescript": "~4.8.2"
+ }
+}
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.css b/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.css
new file mode 100644
index 0000000..e69de29
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.html b/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.html
new file mode 100644
index 0000000..e4e763e
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.html
@@ -0,0 +1,483 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Rocket Ship
+
+
+
+
+
+
+
+
+
+
{{ title }} app is running!
+
+
+ Rocket Ship Smoke
+
+
+
+
+
+
+
Resources
+
Here are some links to help you get started:
+
+
+
+
+
Next Steps
+
What do you want to do next with your app?
+
+
+
+
+
+
+ New Component
+
+
+
+
+ Angular Material
+
+
+
+
+ Add PWA Support
+
+
+
+
+ Add Dependency
+
+
+
+
+ Run and Watch Tests
+
+
+
+
+ Build for Production
+
+
+
+
+
+
ng generate component xyz
+
ng add @angular/material
+
ng add @angular/pwa
+
ng add _____
+
ng test
+
ng build
+
+
+
+
+
+
+
+
+
+ Gray Clouds Background
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.spec.ts b/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.spec.ts
new file mode 100644
index 0000000..03e0fd7
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.spec.ts
@@ -0,0 +1,31 @@
+import { TestBed } from '@angular/core/testing';
+import { AppComponent } from './app.component';
+
+describe('AppComponent', () => {
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [
+ AppComponent
+ ],
+ }).compileComponents();
+ });
+
+ it('should create the app', () => {
+ const fixture = TestBed.createComponent(AppComponent);
+ const app = fixture.componentInstance;
+ expect(app).toBeTruthy();
+ });
+
+ it(`should have as title 'my-app'`, () => {
+ const fixture = TestBed.createComponent(AppComponent);
+ const app = fixture.componentInstance;
+ expect(app.title).toEqual('my-app');
+ });
+
+ it('should render title', () => {
+ const fixture = TestBed.createComponent(AppComponent);
+ fixture.detectChanges();
+ const compiled = fixture.nativeElement as HTMLElement;
+ expect(compiled.querySelector('.content span')?.textContent).toContain('my-app app is running!');
+ });
+});
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.ts b/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.ts
new file mode 100644
index 0000000..7c4365c
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/src/app/app.component.ts
@@ -0,0 +1,92 @@
+import { Component, OnInit } from '@angular/core';
+import { HttpClient } from '@angular/common/http';
+import {
+ LinkAnnotationService,
+ BookmarkViewService,
+ MagnificationService,
+ ThumbnailViewService,
+ ToolbarService,
+ NavigationService,
+ AnnotationService,
+ TextSearchService,
+ TextSelectionService,
+ FormFieldsService,
+ FormDesignerService,
+ PrintService
+} from '@syncfusion/ej2-angular-pdfviewer';
+
+@Component({
+ selector: 'app-root',
+ template: `
+
+ Perform OCR
+
+
+
+ `,
+ providers: [
+ LinkAnnotationService,
+ BookmarkViewService,
+ MagnificationService,
+ ThumbnailViewService,
+ ToolbarService,
+ NavigationService,
+ AnnotationService,
+ TextSearchService,
+ TextSelectionService,
+ FormFieldsService,
+ FormDesignerService,
+ PrintService
+ ]
+})
+export class AppComponent implements OnInit {
+ public document: string = 'https://cdn.syncfusion.com/content/pdf/pdf-succinctly.pdf'; // Initial PDF file URL
+ public resource: string = "https://cdn.syncfusion.com/ej2/26.2.11/dist/ej2-pdfviewer-lib"; // Syncfusion library URL
+
+ constructor(private http: HttpClient) {}
+
+ ngOnInit(): void {}
+
+ performOCR() {
+ // Fetch the PDF file as a Blob
+ this.http.get(this.document, { responseType: 'blob' }).subscribe((pdfBlob) => {
+ const reader = new FileReader();
+ reader.onloadend = () => {
+ let base64PDF = reader.result as string;
+
+ // Remove the prefix if it exists (e.g., data:application/pdf;base64,)
+ if (base64PDF.startsWith('data:application/pdf;base64,')) {
+ base64PDF = base64PDF.substring('data:application/pdf;base64,'.length);
+ }
+
+ // Construct the body to match the Dictionary on the server
+ const body = {
+ documentBase64: base64PDF
+ };
+
+ // Send the Base64 PDF to the server to perform OCR
+ this.http.post('https://localhost:44309/pdfviewer/PerformOCR', body, { responseType: 'text' })
+ .subscribe({
+ next: (response: string) => {
+ // Handle the server response (processed PDF in Base64 format)
+ this.document = response;
+ },
+ error: (err: any) => {
+ // Handle any errors
+ console.error('OCR processing failed', err);
+ },
+ complete: () => {
+ console.log('OCR processing complete');
+ }
+ });
+ };
+
+ // Read the PDF Blob as a Base64 string
+ reader.readAsDataURL(pdfBlob);
+ });
+ }
+}
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/app/app.module.ts b/How to/Perform OCR before loading the document/Angular Client/src/app/app.module.ts
new file mode 100644
index 0000000..54fbc7a
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/src/app/app.module.ts
@@ -0,0 +1,40 @@
+import { NgModule } from '@angular/core';
+import { BrowserModule } from '@angular/platform-browser';
+import {
+ PdfViewerModule,
+ LinkAnnotationService,
+ BookmarkViewService,
+ MagnificationService,
+ ThumbnailViewService,
+ ToolbarService,
+ NavigationService,
+ TextSearchService,
+ TextSelectionService,
+ PrintService
+} from '@syncfusion/ej2-angular-pdfviewer';
+import { HttpClientModule } from '@angular/common/http'; // Import HttpClientModule
+import { AppComponent } from './app.component';
+
+@NgModule({
+ declarations: [
+ AppComponent
+ ],
+ imports: [
+ BrowserModule,
+ PdfViewerModule,
+ HttpClientModule // Add HttpClientModule here
+ ],
+ providers: [
+ LinkAnnotationService,
+ BookmarkViewService,
+ MagnificationService,
+ ThumbnailViewService,
+ ToolbarService,
+ NavigationService,
+ TextSearchService,
+ TextSelectionService,
+ PrintService
+ ],
+ bootstrap: [AppComponent]
+})
+export class AppModule { }
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/assets/.gitkeep b/How to/Perform OCR before loading the document/Angular Client/src/assets/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/favicon.ico b/How to/Perform OCR before loading the document/Angular Client/src/favicon.ico
new file mode 100644
index 0000000..997406a
Binary files /dev/null and b/How to/Perform OCR before loading the document/Angular Client/src/favicon.ico differ
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/index.html b/How to/Perform OCR before loading the document/Angular Client/src/index.html
new file mode 100644
index 0000000..7fa8cd9
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/src/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+ MyApp
+
+
+
+
+
+
+
+
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/main.ts b/How to/Perform OCR before loading the document/Angular Client/src/main.ts
new file mode 100644
index 0000000..c58dc05
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/src/main.ts
@@ -0,0 +1,7 @@
+import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
+
+import { AppModule } from './app/app.module';
+
+
+platformBrowserDynamic().bootstrapModule(AppModule)
+ .catch(err => console.error(err));
diff --git a/How to/Perform OCR before loading the document/Angular Client/src/styles.css b/How to/Perform OCR before loading the document/Angular Client/src/styles.css
new file mode 100644
index 0000000..fc9d8ef
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/src/styles.css
@@ -0,0 +1,10 @@
+/* You can add global styles to this file, and also import other style files */
+@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
+@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
+@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
+@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
+@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
+@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
+@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
+@import '../node_modules/@syncfusion/ej2-pdfviewer/styles/material.css';
+@import '../node_modules/@syncfusion/ej2-notifications/styles/material.css';
\ No newline at end of file
diff --git a/How to/Perform OCR before loading the document/Angular Client/tsconfig.app.json b/How to/Perform OCR before loading the document/Angular Client/tsconfig.app.json
new file mode 100644
index 0000000..374cc9d
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/tsconfig.app.json
@@ -0,0 +1,14 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/app",
+ "types": []
+ },
+ "files": [
+ "src/main.ts"
+ ],
+ "include": [
+ "src/**/*.d.ts"
+ ]
+}
diff --git a/How to/Perform OCR before loading the document/Angular Client/tsconfig.json b/How to/Perform OCR before loading the document/Angular Client/tsconfig.json
new file mode 100644
index 0000000..ed966d4
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/tsconfig.json
@@ -0,0 +1,33 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "baseUrl": "./",
+ "outDir": "./dist/out-tsc",
+ "forceConsistentCasingInFileNames": true,
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "sourceMap": true,
+ "declaration": false,
+ "downlevelIteration": true,
+ "experimentalDecorators": true,
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "target": "ES2022",
+ "module": "ES2022",
+ "useDefineForClassFields": false,
+ "lib": [
+ "ES2022",
+ "dom"
+ ]
+ },
+ "angularCompilerOptions": {
+ "enableI18nLegacyMessageIdFormat": false,
+ "strictInjectionParameters": true,
+ "strictInputAccessModifiers": true,
+ "strictTemplates": true
+ }
+}
diff --git a/How to/Perform OCR before loading the document/Angular Client/tsconfig.spec.json b/How to/Perform OCR before loading the document/Angular Client/tsconfig.spec.json
new file mode 100644
index 0000000..be7e9da
--- /dev/null
+++ b/How to/Perform OCR before loading the document/Angular Client/tsconfig.spec.json
@@ -0,0 +1,14 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/spec",
+ "types": [
+ "jasmine"
+ ]
+ },
+ "include": [
+ "src/**/*.spec.ts",
+ "src/**/*.d.ts"
+ ]
+}
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice.sln b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice.sln
new file mode 100644
index 0000000..4bea045
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.4.33403.182
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ControllerPractice", "ControllerPractice\ControllerPractice.csproj", "{14100176-83DC-4CB1-87D4-4D71C9E8F177}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {14100176-83DC-4CB1-87D4-4D71C9E8F177}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {14100176-83DC-4CB1-87D4-4D71C9E8F177}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {14100176-83DC-4CB1-87D4-4D71C9E8F177}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {14100176-83DC-4CB1-87D4-4D71C9E8F177}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {676A0D7F-7DC9-4AC1-B66A-956820E0B388}
+ EndGlobalSection
+EndGlobal
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/ControllerPractice.csproj b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/ControllerPractice.csproj
new file mode 100644
index 0000000..0062ca7
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/ControllerPractice.csproj
@@ -0,0 +1,53 @@
+
+
+
+ net8.0
+ 12ea3796-a921-4ebc-a426-00aa12669a5e
+ Windows
+
+
+
+
+
+
+
+
+ true
+ PreserveNewest
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+
+
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Controllers/HomeController.cs b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Controllers/HomeController.cs
new file mode 100644
index 0000000..6ca69f4
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Controllers/HomeController.cs
@@ -0,0 +1,37 @@
+using ControllerPractice.Models;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Logging;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace ControllerPractice.Controllers
+{
+ public class HomeController : Controller
+ {
+ private readonly ILogger _logger;
+
+ public HomeController(ILogger logger)
+ {
+ _logger = logger;
+ }
+
+ public IActionResult Index()
+ {
+ return View();
+ }
+
+ public IActionResult Privacy()
+ {
+ return View();
+ }
+
+ [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
+ public IActionResult Error()
+ {
+ return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
+ }
+ }
+}
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Controllers/PdfViewerController.cs b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Controllers/PdfViewerController.cs
new file mode 100644
index 0000000..ad6be2c
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Controllers/PdfViewerController.cs
@@ -0,0 +1,86 @@
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Caching.Memory;
+using Newtonsoft.Json;
+using Syncfusion.EJ2.PdfViewer;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Net;
+using System.Linq;
+using Microsoft.AspNetCore.Http;
+using HarfBuzzSharp;
+using Syncfusion.Pdf.Parsing;
+using Syncfusion.OCRProcessor;
+
+namespace PdfViewerService2.Controllers
+{
+ [Route("[controller]")]
+ [ApiController]
+ public class PdfViewerController : ControllerBase
+ {
+ private IHostingEnvironment _hostingEnvironment;
+ //Initialize the memory cache object
+ public IMemoryCache _cache;
+ public PdfViewerController(IHostingEnvironment hostingEnvironment, IMemoryCache cache)
+ {
+ _hostingEnvironment = hostingEnvironment;
+ _cache = cache;
+ Console.WriteLine("PdfViewerController initialized");
+ }
+
+ [HttpPost("PerformOCR")]
+ /* [Microsoft.AspNetCore.Cors.EnableCors("MyPolicy")]*/
+ [Route("[controller]/PerformOCR")]
+ //Post action for downloading the PDF documents
+ public IActionResult PerformOCR([FromBody] Dictionary jsonObject)
+ {
+ //Initialize the PDF Viewer object with memory cache object
+ PdfRenderer pdfviewer = new PdfRenderer(_cache);
+ // Get the Base64 string of the PDF document from the request body
+ string documentBase = jsonObject["documentBase64"];
+ byte[] bytes = Convert.FromBase64String(documentBase);
+ MemoryStream ms = new MemoryStream(bytes);
+ PdfLoadedDocument loadedDocument = new PdfLoadedDocument(ms);
+
+ //Initialize the OCR processor
+ using (OCRProcessor processor = new OCRProcessor())
+ {
+ //Language to process the OCR
+ processor.Settings.Language = Languages.English;
+
+ //Process OCR by providing the PDF document.
+ processor.PerformOCR(loadedDocument);
+ }
+
+ //Saving the PDF to the MemoryStream
+ MemoryStream stream = new MemoryStream();
+ loadedDocument.Save(stream);
+
+ //Close the PDF document
+ loadedDocument.Close(true);
+
+ //Set the position as '0'
+ stream.Position = 0;
+
+ string updatedDocumentBase = Convert.ToBase64String(stream.ToArray());
+ return (Content("data:application/pdf;base64," + updatedDocumentBase));
+ }
+
+ //GET api/values
+ [HttpGet]
+ public IEnumerable Get()
+ {
+ return new string[] { "value1", "value2" };
+ }
+
+ // GET api/values/5
+ [HttpGet("{id}")]
+ public string Get(int id)
+ {
+ return "value";
+ }
+
+ }
+}
+
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/FormDesigner.xfdf b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/FormDesigner.xfdf
new file mode 100644
index 0000000..5584880
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/FormDesigner.xfdf
@@ -0,0 +1 @@
+{"Textbox1":""}
\ No newline at end of file
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Input.pdf b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Input.pdf
new file mode 100644
index 0000000..5c2bf8c
Binary files /dev/null and b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Input.pdf differ
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Models/ErrorViewModel.cs b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Models/ErrorViewModel.cs
new file mode 100644
index 0000000..2cb694c
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Models/ErrorViewModel.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace ControllerPractice.Models
+{
+ public class ErrorViewModel
+ {
+ public string RequestId { get; set; }
+
+ public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
+ }
+}
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Program.cs b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Program.cs
new file mode 100644
index 0000000..549d8e6
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Program.cs
@@ -0,0 +1,26 @@
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.Hosting;
+using Microsoft.Extensions.Logging;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace ControllerPractice
+{
+ public class Program
+ {
+ public static void Main(string[] args)
+ {
+ CreateHostBuilder(args).Build().Run();
+ }
+
+ public static IHostBuilder CreateHostBuilder(string[] args) =>
+ Host.CreateDefaultBuilder(args)
+ .ConfigureWebHostDefaults(webBuilder =>
+ {
+ webBuilder.UseStartup();
+ });
+ }
+}
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Properties/launchSettings.json b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Properties/launchSettings.json
new file mode 100644
index 0000000..d6a861e
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Properties/launchSettings.json
@@ -0,0 +1,46 @@
+{
+ "profiles": {
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "launchUrl": "pdfviewer",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "ControllerPractice": {
+ "commandName": "Project",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ },
+ "dotnetRunMessages": "true",
+ "applicationUrl": "https://localhost:5001;http://localhost:5000"
+ },
+ "WSL": {
+ "commandName": "WSL2",
+ "launchBrowser": true,
+ "launchUrl": "https://localhost:5001",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development",
+ "ASPNETCORE_URLS": "https://localhost:5001;http://localhost:5000"
+ },
+ "distributionName": ""
+ },
+ "Docker": {
+ "commandName": "Docker",
+ "launchBrowser": true,
+ "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/pdfviewer",
+ "publishAllPorts": true,
+ "useSSL": true
+ }
+ },
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:7001",
+ "sslPort": 44309
+ }
+ }
+}
\ No newline at end of file
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Startup.cs b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Startup.cs
new file mode 100644
index 0000000..e0d110c
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Startup.cs
@@ -0,0 +1,96 @@
+using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.HttpsPolicy;
+using Microsoft.Extensions.Configuration;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.ResponseCompression;
+using Microsoft.Extensions.Logging;
+using Newtonsoft.Json.Serialization;
+using Microsoft.AspNetCore.Http.Features;
+
+
+namespace ControllerPractice
+{
+ public class Startup
+ {
+ public Startup(IConfiguration configuration)
+ {
+ Configuration = configuration;
+ }
+
+ public IConfiguration Configuration { get; }
+
+ readonly string MyAllowSpecificOrigins = "MyPolicy";
+
+ // This method gets called by the runtime. Use this method to add services to the container.
+ public void ConfigureServices(IServiceCollection services)
+ {
+ services.AddControllersWithViews();
+ services.AddMemoryCache();
+ services.AddControllers().AddNewtonsoftJson(options =>
+ {
+ // Use the default property (Pascal) casing
+ options.SerializerSettings.ContractResolver = new DefaultContractResolver();
+ });
+
+ services.AddCors(options =>
+ {
+ options.AddPolicy(MyAllowSpecificOrigins,
+ builder =>
+ {
+ builder.AllowAnyOrigin()
+ .AllowAnyMethod()
+ .AllowAnyHeader();
+ });
+ });
+ services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
+ services.Configure(options => options.Level = System.IO.Compression.CompressionLevel.Optimal);
+ services.Configure(options =>
+ {
+ //options.MaxRequestBodySize = 262144; // or your desired value
+ options.MaxRequestBodySize = int.MaxValue; // or your desired value
+ });
+ services.Configure(options =>
+ {
+ options.MultipartBodyLengthLimit = long.MaxValue; // Set your desired limit in bytes
+ });
+ services.AddResponseCompression();
+ }
+
+ // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
+ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
+ {
+
+ if (env.IsDevelopment())
+ {
+ app.UseDeveloperExceptionPage();
+ }
+ else
+ {
+ app.UseExceptionHandler("/Home/Error");
+ // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
+ app.UseHsts();
+ }
+ app.UseCors(MyAllowSpecificOrigins);
+ app.UseHttpsRedirection();
+ app.UseStaticFiles();
+
+ app.UseRouting();
+
+ app.UseAuthorization();
+
+ app.UseEndpoints(endpoints =>
+ {
+ endpoints.MapControllerRoute(
+ name: "default",
+ pattern: "{controller=Home}/{action=Index}/{id?}");
+ });
+ }
+ }
+}
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Home/Index.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Home/Index.cshtml
new file mode 100644
index 0000000..947d01c
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Home/Index.cshtml
@@ -0,0 +1,14 @@
+@{
+ ViewData["Title"] = "Home Page";
+}
+
+
+
+@* *@
+
+@* *@
+
+
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Home/Privacy.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Home/Privacy.cshtml
new file mode 100644
index 0000000..af4fb19
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Home/Privacy.cshtml
@@ -0,0 +1,6 @@
+@{
+ ViewData["Title"] = "Privacy Policy";
+}
+@ViewData["Title"]
+
+Use this page to detail your site's privacy policy.
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/PdfViewer/Index.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/PdfViewer/Index.cshtml
new file mode 100644
index 0000000..947d01c
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/PdfViewer/Index.cshtml
@@ -0,0 +1,14 @@
+@{
+ ViewData["Title"] = "Home Page";
+}
+
+
+
+@* *@
+
+@* *@
+
+
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/PdfViewerTest/Index.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/PdfViewerTest/Index.cshtml
new file mode 100644
index 0000000..947d01c
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/PdfViewerTest/Index.cshtml
@@ -0,0 +1,14 @@
+@{
+ ViewData["Title"] = "Home Page";
+}
+
+
+
+@* *@
+
+@* *@
+
+
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/Error.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/Error.cshtml
new file mode 100644
index 0000000..a1e0478
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/Error.cshtml
@@ -0,0 +1,25 @@
+@model ErrorViewModel
+@{
+ ViewData["Title"] = "Error";
+}
+
+Error.
+An error occurred while processing your request.
+
+@if (Model.ShowRequestId)
+{
+
+ Request ID: @Model.RequestId
+
+}
+
+Development Mode
+
+ Swapping to Development environment will display more detailed information about the error that occurred.
+
+
+ The Development environment shouldn't be enabled for deployed applications.
+ It can result in displaying sensitive information from exceptions to end users.
+ For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development
+ and restarting the app.
+
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/_Layout.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/_Layout.cshtml
new file mode 100644
index 0000000..ae00bcc
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/_Layout.cshtml
@@ -0,0 +1,54 @@
+
+
+
+
+
+ @ViewData["Title"] - ControllerPractice
+
+ @* Syncfusion Essential JS 2 Styles *@
+ @* *@
+
+ @* Syncfusion Essential JS 2 Scripts *@
+ @**@
+
+
+
+
+
+
+ @RenderBody()
+
+
+
+
+
+
+
+ @await RenderSectionAsync("Scripts", required: false)
+
+
+
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/_ValidationScriptsPartial.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/_ValidationScriptsPartial.cshtml
new file mode 100644
index 0000000..5a16d80
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/Shared/_ValidationScriptsPartial.cshtml
@@ -0,0 +1,2 @@
+
+
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/_ViewImports.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/_ViewImports.cshtml
new file mode 100644
index 0000000..be46e80
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/_ViewImports.cshtml
@@ -0,0 +1,4 @@
+@using ControllerPractice
+@using ControllerPractice.Models
+@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
+@addTagHelper *, Syncfusion.EJ2
\ No newline at end of file
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/_ViewStart.cshtml b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/_ViewStart.cshtml
new file mode 100644
index 0000000..a5f1004
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/Views/_ViewStart.cshtml
@@ -0,0 +1,3 @@
+@{
+ Layout = "_Layout";
+}
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/annotationCollection.txt b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/annotationCollection.txt
new file mode 100644
index 0000000..0cc5fe7
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/annotationCollection.txt
@@ -0,0 +1 @@
+[{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":0,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"63333f09-1c76-4f6f-adc2-fc4f06303da4"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":0,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"3f0e5417-f517-4a65-a4a4-e543b79031e5"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":0,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"3fd8bf43-e0e6-4d92-a539-9dcb0da8dff0"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":0,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"be2896d9-4dc6-42da-35ab-2c6b59fb8d3f"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":1,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"d742f06f-d996-4a6a-eea2-5f0aee8cafbc"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":1,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"20b20244-2652-4192-01c2-9f635247b80b"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":1,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"569f69c9-802f-4928-aa5f-9cd3612bd8bf"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":1,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"87100d2a-f19c-4781-0f7a-84fb4155f95b"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":2,"textMarkupContent":" , , ","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"434333c5-484b-4bf3-c92d-3f2a72818af9"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":2,"textMarkupContent":"e y","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"01d289b3-b61d-42cd-8f09-e579a160ca25"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":2,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"f46af0a5-069e-4082-b846-a403d84b3525"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":2,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"214d0a30-af51-4304-6b12-9597f35d3fcc"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":3,"textMarkupContent":" ..................................................ContentStreamLength","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"c3540a19-6d2f-490b-c9ca-d057dd26f666"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":3,"textMarkupContent":"Positioning Text ...............................................","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"78ab374b-dcd8-43a0-6f9a-993b0456802f"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":3,"textMarkupContent":" TheTLOperator","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"44d11d37-9c98-4115-b520-daa0a9731dba"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":3,"textMarkupContent":" .....................................................The'(SingleQuote)Operator","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"f5c1c868-0942-466f-7c62-b1fd475c5e81"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":4,"textMarkupContent":"Summary ............................................................","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"ea610272-1365-4793-130d-dc13fe4efbad"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":4,"textMarkupContent":" ......................................Chk","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"8b6e7906-6836-44ff-3391-2a020297df24"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":4,"textMarkupContent":"Colors ...............................................................","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"642d2e98-40ef-435e-93e3-7feadffaf29c"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":4,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"b98f8181-5082-456e-d2f9-fd34025e8053"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":5,"textMarkupContent":"Weareusuallyfacedwithtwooptions:readsevera","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"f79afb8a-d521-4aa6-9f05-7d1eadf48f44"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":5,"textMarkupContent":" booksthatwouldbetargetedatdevelopersworking","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"79f3a8fe-6317-4887-c6df-4a37925e0fe2"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":5,"textMarkupContent":" ","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"1ce263e2-84eb-42dc-4efc-6689b2595f7b"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":5,"textMarkupContent":" ","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"bbd00c39-e789-4d9a-b055-408b0e90b5cb"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":6,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"54d5caed-0610-4740-f709-7b88d3e0cb5f"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":6,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"8f47987d-75b9-4410-7697-31df2126a88f"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":6,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"5d7bfe2a-a0ff-4dff-94a0-496bdc9bf68d"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":6,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"53786014-ddaa-40a6-a255-2aa47ac5caf9"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":7,"textMarkupContent":"(http://itextpdf.com/). iTextSharp is a C# library that","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"7a20edf1-0f8e-4b62-2eca-cbcd48ea97c4"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":7,"textMarkupContent":"..","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"e5451ae9-06c8-4c02-69af-a9c20b8adb9f"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":7,"textMarkupContent":"1.7.","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"375bfa12-621c-413b-1839-6d792dc8d827"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":7,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"9f550048-4587-4619-f609-566960ac125e"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":8,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"17fdb46f-7944-4f94-5629-ee85c23f3812"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":8,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"51335a22-510b-4edb-67a2-e90b5a6f5e15"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":8,"textMarkupContent":"EveryPDFfilemusthavethesefourcomponents","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"4cd9442f-89d0-4bed-98a1-3a9646e0543e"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":8,"textMarkupContent":" wouldresultinacorruptedfilesinceaPDFtypicallyco","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"7d6e4a8b-1376-4da6-62dc-a0ed71e2139a"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":9,"textMarkupContent":", Oftthiijtittthtt","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"d850c06c-345e-4ce4-246e-8cac0a77aa36"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":9,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"9130d1d3-28e6-4b1d-a2ab-c23c7dec9a7e"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":9,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"d698ce17-c872-42e8-073c-a412fc939305"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","allowedInteractions":["None"],"opacity":1,"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":9,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"annotationAddMode":"Imported Annotation","annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isLocked":false,"isPrint":true,"isCommentLock":false,"annotationId":"0ff3e507-ac6b-4a72-245f-4d116f819e48"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":10,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"8275bf9f-a6d5-4369-9e2c-a8ed48da7de4"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":10,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"9af33368-0f76-42f6-5294-5eb73c6a5db7"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":10,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"265a5899-dba5-4e8e-dc8f-656b66b8467f"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":10,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"023f168e-bb79-4474-57f2-09d53a420e97"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":11,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"d4d99ed5-7203-4e37-8df8-2aedc97ce346"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":11,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"75c9dde5-df68-4419-c9e5-be1daebce76c"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":11,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"9a35179d-cc23-4973-2f70-aa27bb2729b7"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":11,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"5613f0b5-56d6-46c5-d707-7f5271ba079a"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":12,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"68e8f486-61f1-4967-f023-2be7ad5d64c2"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":12,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"3d317e09-537e-4fef-3938-bf8f95607279"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":12,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f8586ad7-f7d8-4f37-7e44-0572091f2ed1"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":12,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"daa97ae7-18de-4b9e-6834-86ffa609e7e4"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":13,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"bb57db7e-2156-4b1e-5e12-4bad48b0be1c"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":13,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"279d391b-5b03-4bed-1460-80c2366aa2b0"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":13,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"499d0986-9dbb-457e-51b5-e28e81f474c2"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":13,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"9e039ef2-4cf7-48d1-b75a-7ff8fcf083f3"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":14,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"8aabc8ec-4532-4021-f069-8d4881648826"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":14,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"571ffefa-b617-46f3-1165-bcba1c987f47"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":14,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"28225776-e85d-4025-644e-d617f913d4c1"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":14,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"7555a5a0-e423-48eb-4ee5-00b5649d4a31"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":15,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"aa4557dd-c4fa-4dfc-7911-56a7d634003e"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":15,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"51df495d-89ed-48a7-f53c-c3582b2b0184"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":15,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"ebe3ed3f-9419-44f1-9093-c937765f0f4d"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":15,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"1878a1cc-b4f2-40db-25e8-97e7e07cc998"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":16,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"cfbcbc39-488d-40b4-8d4a-11e53b17c52f"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":16,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"5427b31c-fa32-44bd-c907-3b18c3ecc865"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":16,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"82f97f44-760b-4b08-122e-de18ab256d1d"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":16,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"29ccc629-ec11-4745-5157-6d690cdb6b7c"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":17,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"e05fbe5f-e39e-4d19-4eea-1330530ad15d"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":17,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"ef7fdbac-d884-4d65-419a-1311aa46c3b4"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":17,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"2bae2110-a993-40e0-137a-e6c00617fc56"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":17,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f5008fdf-1f49-4c34-29e0-4843a822c3e5"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":18,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"ce8e9833-3e1f-4f64-4a6d-ee46e5d1856e"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":18,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"c235311e-bc4c-45ea-f584-332ca80fbf34"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":18,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"e1cf3708-349c-4c09-32bb-76adf5e82e8b"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":18,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"bba91378-6d79-4cb0-a0d9-2ce8bdcf3cdc"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":19,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"3e0c47e9-c424-4c6c-8159-4ef9ddbb9b97"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":19,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"5e83b9fc-8e68-4767-5e3b-8ac61f4aab2f"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":19,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"85927bf4-3103-470a-1443-798329a1ee26"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":19,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"3e807dbb-b951-478f-fe17-8e3b67a8a0df"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":20,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"48ec4720-3f8e-494f-2cfb-e6a012ecd4ff"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":20,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"d50bf243-17d9-42d8-d366-7650660f848a"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":20,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"a7c3f3a7-a6e4-48f7-9224-10137ac1f789"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":20,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"4ab9b23a-0282-4307-ec28-2b4b33fbd053"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":21,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"5d83a666-1088-4213-c962-6972391b8980"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":21,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"eaefd2f6-dc8e-4887-32b8-4cad152d2094"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":21,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"5095d12f-0e2f-4359-659d-e093f8b98325"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":21,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"a05f0bb9-c6ae-4098-072a-bca7106b5cdf"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":22,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"029d7e78-ce43-41d8-2ee6-ada9f764a83d"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":22,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"c75223df-4861-4ae6-3cef-398845dec44a"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":22,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"4abf4c15-5551-45da-e2c1-753f91e80658"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":22,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"dc19147b-434d-4504-63b2-ceb793c24d6a"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":23,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f8202a52-4e47-443c-891d-d3d1e0d242ac"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":23,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f677f8f3-43b2-43f4-5b51-f9635998bcc8"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":23,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"839d805b-e481-4f49-5e98-4c9e23832da1"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":23,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"8c734546-c249-4e50-d025-e9c042ea0b90"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":24,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"a97a1210-e04d-4916-5a00-9e6b2c85af05"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":24,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"63701b36-11e7-40e0-70b4-e752398d681d"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":24,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"4054934c-5afb-4530-941e-7ffe379f473f"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":24,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"dcafb00c-5ef8-4ef5-63da-ad69ba6762c9"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":25,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"c92d3a13-d717-4e8f-fe04-176a27034bf3"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":25,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"64cf4477-b628-48bf-afcc-26bd3b815454"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":25,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"2c5d81b4-4b2a-47e0-246d-fb51c2031b83"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":25,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"b652eebe-d3cc-4151-53b6-2fbad3c637ed"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":26,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"e290b509-9f24-4de8-da8a-8173217bf989"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":26,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"a38273c6-3660-42a4-ef76-aedfd5b7fe9c"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":26,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"ff1684f9-a89c-46b0-5968-51eae34e00a2"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":26,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"312a90a2-c1ce-457c-d207-1c11d699fab0"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":27,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"7018cd41-dc0e-4758-54ca-bef81263d370"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":27,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"2f1c0443-7b2a-4736-561e-f5acae5c98f4"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":27,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"8c38fb1d-03b6-4e8b-1fce-eb478c5c4795"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":27,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"0f7f2db5-bce5-413e-e631-8d5832743cb6"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":28,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"be355bb2-5467-4f9c-2316-52ed03bc0c4c"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":28,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"fb06ca61-274d-48bd-d636-c75d3eb485d2"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":28,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"a9a69830-3a12-48e9-6b68-59e378fb2e1d"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":28,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"409adef9-6d0d-41bf-b1ce-f5af3f68f0c5"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":29,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"1a814aff-40aa-4fe8-d2b5-676297bbd486"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":29,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"cbabbcab-394e-40d7-cb0d-cd9526530939"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":29,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"14508dd0-56b7-4dd2-9e52-408a8e990c08"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":29,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"2fd5767b-02eb-44a4-b348-6037571f4fa9"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":30,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"d8b22ee0-4243-4010-b92d-7715568d16ca"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":30,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"b171f35c-c37d-4930-308f-6e6223fd73d0"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":30,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f922a0a5-5c78-4f2f-d412-00f485adf298"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":30,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"3412a24c-9531-4e45-aeea-eff737693134"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":31,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"8c58ae51-8b3c-47cc-c11b-21bd6a75ff5d"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":31,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"c0f37785-b1ca-409d-ea21-5761c7fcf070"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":31,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"d534c4ac-0f18-4dae-5342-3038d947e45d"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":31,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"2d0a2b46-ec20-4c31-ea7a-9d45a4fa5304"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":32,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"3fed9973-5334-482b-91a7-23840d85ecb3"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":32,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"7d484aa9-606c-4140-8e4d-59fbdb3468b5"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":32,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"1619aba7-fc85-4cdb-c709-d6385ee6758c"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":32,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"eca0bc99-b320-4437-ef4d-d290b37bccc8"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":33,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"43f4be23-3d98-48e2-0b13-39bddaec192c"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":33,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"22dd46d7-6ee2-4cf3-5fa3-6f374a28f044"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":33,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"1f5654d8-f5ff-473b-a511-628adfb49a02"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":33,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"3429d858-a611-4e20-0100-24f421826a17"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":34,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"81f7be77-50df-44a8-4e82-8cb56417fee0"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":34,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f32b423c-5b3b-4a33-36dc-2ad96ff9c470"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":34,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"51975206-2355-41ac-bca1-79174663d3f8"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":34,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"d231fa21-15b1-433f-c5f8-5f879f0a508f"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":35,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"db2526b2-b89d-44bf-5b9d-d8d439ffb223"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":35,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"114d3bd1-b6bf-45dd-b562-eafe59aa0954"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":35,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"874e7518-de0f-48cc-cb2e-619d787c4509"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":35,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f832ceb6-040d-4f8a-1d41-461055340473"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":36,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"27bd28f3-a2e2-43da-fa51-c8b77cbbadc9"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":36,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"4577587d-4939-498a-be3e-0a9528018cf3"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":36,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"235fccd7-c179-438e-ad11-732115546004"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":36,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"b753b76d-3f13-4f36-2b5d-eff4c789b9ac"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":37,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"0beb72be-6c11-4285-3e53-b8ed96d057f3"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":37,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"113ca324-4878-4fef-1a9d-2d85c519a44d"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":37,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"cfb30210-c103-47d0-1069-9a7d0c435671"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":37,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"b792de7e-e580-4918-8e20-82586f1993dd"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":38,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"c2f17031-7962-4562-e369-b8e0f634c548"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":38,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"d9202cf8-e0b3-4016-e9f4-390510c5e885"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":38,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"3d30af3d-40cd-4be5-71d5-def9f72d4c9b"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":38,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"43984ce2-2eab-4ada-2d7d-8ad55afa0293"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":39,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"ad0653f5-563d-4ab9-107d-e47860c3a2b5"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":39,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"1f77adb5-bf45-40e2-1ac9-05a843ee2a22"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":39,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"5ab090a0-9225-4d19-6f16-22423f4524ca"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":39,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"0311cca6-b98f-4c0b-52b4-3a55d2e0c637"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":40,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"1cca6d12-cdeb-4e05-7564-e95f62fb5e7a"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":40,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"46d9082f-a398-4d7c-c736-7c24b1aba2aa"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":40,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"9d9db178-5151-4904-465c-4c526dc0b91a"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":40,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"dbb1e777-ca0c-4917-b0c3-18fbbb5c9645"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":41,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"b9fe2853-b49e-4257-1af2-3d0e7c39d822"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":41,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"deefd125-d6e5-433c-ebfa-8441aa03cb09"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":41,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"959da5c5-ecad-4a12-e4a7-8db7bad4f594"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":41,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"bc84c3eb-27e6-42c2-1e9c-d90ddd5093ac"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":42,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f148b9da-bc4b-4242-004c-beb46f7cc95d"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":42,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"ad067c01-3640-439b-1f59-fc7642e09b6a"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":42,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"e6d98d6b-ff60-4e25-5c25-24d15bbc91f1"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":42,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"699cc727-68e2-4ac9-c4c1-8221139f5472"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":43,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"db84a10f-c019-454a-5d0c-319a6f7f02b3"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":43,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"32063732-c7eb-4c66-61bc-0d224fc8eb2c"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":43,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"862e689d-76e4-4ae1-08d3-ae5f83f3f31f"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":43,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"8c5a4614-ddee-479d-5adb-db7f9f05f8ab"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":44,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"54ef1610-4d2b-4980-ec55-970c71c0406f"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":44,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"76609a84-9b94-43b6-79a9-84d754207397"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":44,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f3b46c35-8c97-4a3a-ee2b-7e1a430840fc"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":44,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"c32b801b-e64b-4ca1-9b16-397557c6e806"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":45,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"0def3ccd-b140-4f6c-4e9e-0adb38482089"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":45,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"9a7c297d-9d80-4a6e-0182-ac203f2edd96"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":45,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"851827ee-c57c-4263-165d-d9e59af0adeb"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":45,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"903c7f78-f037-4a00-95f1-53eead4fbef5"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":46,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"c010d049-d392-4ce5-c3eb-05cc7cdf92c2"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":46,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"fd7ec417-e7c8-40c9-ec56-1e0fb75f5a8f"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":46,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"467466ef-b15e-4971-6565-6bcb3645274c"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":46,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"661a6a94-1f1e-4705-fac6-070dd7474c57"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":47,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"7002ce19-6a02-44c2-c282-91238ba6de25"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":47,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"47c7b22a-5c8d-4dbe-a47c-38c8278aa0fe"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":47,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"1a68c60d-e549-449f-286d-4feab6518bd3"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":47,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"f376e129-a4cc-4998-f2bd-cb55527bb44c"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":500,"Width":350,"Height":14,"Left":97,"Top":500}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":48,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"ddf9970b-1544-48fd-3fe1-0bb222909601"},{"textMarkupAnnotationType":"Highlight","color":"#ffff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":610,"Width":350,"Height":14,"Left":97,"Top":610}],"author":"Guest","subject":"Highlight","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":48,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"39f10103-0ab3-48bc-93c1-56c6b0ff8dab"},{"textMarkupAnnotationType":"Underline","color":"#00ff00","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":723,"Width":353.5,"Height":14,"Left":97,"Top":723}],"author":"Guest","subject":"Underline","modifiedDate":"12/14/2023 5:45:49 PM","note":"","rect":{},"isLocked":false,"comments":[],"review":{"state":"","stateModel":"","modifiedDate":"12/14/2023 5:45:49 PM","author":"Guest"},"shapeAnnotationType":"textMarkup","pageNumber":48,"textMarkupContent":"","textMarkupStartIndex":0,"textMarkupEndIndex":0,"annotationSelectorSettings":{"selectionBorderColor":"","resizerBorderColor":"black","resizerFillColor":"#FF4081","resizerSize":8,"selectionBorderThickness":1,"resizerShape":"Square","selectorLineDashArray":[],"resizerLocation":3},"isMultiSelect":false,"annotNameCollection":null,"annotationSettings":{"minWidth":0,"maxWidth":0,"minHeight":0,"maxHeight":0,"isLock":false,"isPrint":true},"isPrint":true,"isCommentLock":false,"isAnnotationRotated":false,"annotationId":"98236355-e8b2-4fea-f132-a6718aa09844"},{"textMarkupAnnotationType":"Strikethrough","color":"#ff0000","opacity":1,"allowedInteractions":["None"],"bounds":[{"X":97,"Y":836,"Width":376.5,"Height":14,"Left":97,"Top":836}],"author":"Guest","subject":"Strikethrough","modifiedDate":"12/14/2023 5:45:49 PM","note"
\ No newline at end of file
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/appsettings.Development.json b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/appsettings.Development.json
new file mode 100644
index 0000000..8983e0f
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/appsettings.Development.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ }
+}
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/appsettings.json b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/appsettings.json
new file mode 100644
index 0000000..d9d9a9b
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/appsettings.json
@@ -0,0 +1,10 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/web.config b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/web.config
new file mode 100644
index 0000000..d579aa2
--- /dev/null
+++ b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/web.config
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/wwwroot/favicon.ico b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/wwwroot/favicon.ico
new file mode 100644
index 0000000..63e859b
Binary files /dev/null and b/How to/Perform OCR before loading the document/ControllerPractice/ControllerPractice/wwwroot/favicon.ico differ