Add similarity checks to repetitive element removal

This commit is contained in:
Johannes Zillmann 2021-03-15 09:16:50 +01:00
parent 9bd5043f2e
commit a90e6207dc
15 changed files with 5895 additions and 61 deletions

24
core/package-lock.json generated
View File

@ -8,6 +8,10 @@
"name": "pdf-to-markdown-core",
"version": "0.5.0",
"license": "AGPL-3.0",
"dependencies": {
"@types/string-similarity": "^4.0.0",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
@ -1091,6 +1095,11 @@
"integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==",
"dev": true
},
"node_modules/@types/string-similarity": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/string-similarity/-/string-similarity-4.0.0.tgz",
"integrity": "sha512-dMS4S07fbtY1AILG/RhuwmptmzK1Ql8scmAebOTJ/8iBtK/KI17NwGwKzu1uipjj8Kk+3mfPxum56kKZE93mzQ=="
},
"node_modules/@types/yargs": {
"version": "15.0.12",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz",
@ -6667,6 +6676,11 @@
"node": ">=10"
}
},
"node_modules/string-similarity": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz",
"integrity": "sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ=="
},
"node_modules/string-width": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
@ -8425,6 +8439,11 @@
"integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==",
"dev": true
},
"@types/string-similarity": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/string-similarity/-/string-similarity-4.0.0.tgz",
"integrity": "sha512-dMS4S07fbtY1AILG/RhuwmptmzK1Ql8scmAebOTJ/8iBtK/KI17NwGwKzu1uipjj8Kk+3mfPxum56kKZE93mzQ=="
},
"@types/yargs": {
"version": "15.0.12",
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz",
@ -12911,6 +12930,11 @@
"strip-ansi": "^6.0.0"
}
},
"string-similarity": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz",
"integrity": "sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ=="
},
"string-width": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",

View File

@ -40,5 +40,9 @@
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/string-similarity": "^4.0.0",
"string-similarity": "^4.0.4"
}
}

View File

@ -1,5 +1,31 @@
import Item from '../Item';
export function flatMap<T, S>(array: T[], func: (entry: T) => S[]): S[] {
return array.reduce((result, entry) => result.concat(func(entry)), [] as S[]);
}
export function onlyUnique<T>(value: T, index: number, self: T[]) {
return self.indexOf(value) === index;
}
export function count<T, S>(array: T[], find: (entry: T) => boolean): number {
return array.reduce((count, entry) => (find(entry) ? count + 1 : count), 0);
}
export function median(values: number[]) {
if (values.length === 0) return 0;
values.sort(function (a, b) {
return a - b;
});
var half = Math.floor(values.length / 2);
if (values.length % 2) return values[half];
return (values[half - 1] + values[half]) / 2.0;
}
type KeyExtractor = (item: Item) => any;
type PageItemTransformer = (page: number, items: Item[]) => Item[];
type LineItemTransformer = (page: number, line: number, items: Item[]) => Item[];
@ -20,6 +46,10 @@ export function groupByPage(items: Item[]): Item[][] {
return groupBy(items, (item) => item.page);
}
export function groupByLine(items: Item[]): Item[][] {
return groupByElement(items, 'line');
}
export function groupByElement(items: Item[], elementName: string): Item[][] {
return groupBy(items, (item) => item.data[elementName]);
}
@ -39,3 +69,42 @@ export function transformGroupedByPageAndLine(items: Item[], groupedTransformer:
});
return transformedItems;
}
export function mostFrequent<T extends number | string>(items: Item[], dataElementKey: string): T | undefined {
const occurenceMap = items.reduce((map: Map<T, number>, item) => {
const key = item.data[dataElementKey];
const occurrence = map.get(key) || 0;
map.set(key, occurrence + 1);
return map;
}, new Map());
const topElement = [...occurenceMap].reduce(
(topEntry: [T | undefined, number], entry: [T, number]) => (entry[1] >= topEntry[1] ? entry : topEntry),
[undefined, 0],
)[0];
//TODO optimally we should handle the 50/50 case
return topElement;
}
export function majorityElement<T>(items: Item[], extract: (item: Item) => T): T | undefined {
if (items.length == 0) {
return;
}
let maj = 0,
count = 1;
for (let i = 1; i < items.length; i++) {
if (extract(items[i]) === extract(items[maj])) {
count++;
} else {
count--;
}
if (count === 0) {
maj = i;
count = 1;
}
}
return extract(items[maj]);
}

View File

@ -0,0 +1,18 @@
const MIN_DIGIT_CHAR_CODE = 48;
const MAX_DIGIT_CHAR_CODE = 57;
export function isDigit(charCode: number): boolean {
return charCode >= MIN_DIGIT_CHAR_CODE && charCode <= MAX_DIGIT_CHAR_CODE;
}
export function toCharcodes(text: string): number[] {
const codes: number[] = [];
for (let index = 0; index < text.length; index++) {
codes.push(text.charCodeAt(index));
}
return codes;
}
export function filterOutDigits(text: string): string {
return String.fromCharCode(...toCharcodes(text).filter((code) => !isDigit(code)));
}

View File

@ -1,14 +1,39 @@
import { compareTwoStrings } from 'string-similarity';
import Item from '../Item';
import ItemResult from '../ItemResult';
import ItemTransformer from './ItemTransformer';
import TransformContext from './TransformContext';
import LineItemMerger from '../debug/LineItemMerger';
import { transformGroupedByPage, transformGroupedByPageAndLine } from '../support/groupingUtils';
import {
count,
flatMap,
groupByLine,
groupByPage,
median,
mostFrequent,
onlyUnique,
transformGroupedByPageAndLine,
} from '../support/groupingUtils';
import { filterOutDigits } from '../support/stringFunctions';
const config = {
// Max number of lines at top/bottom which are getting evaluated for eviction
maxNumberOffTopOrBottomLines: 3,
// Minumum number of times in percent that the y has to appear as fringe element in a page
minYOccurence: 0.6,
// Max neighbour hops in both direction when checking for neighbour similarity
neighbourReach: 3,
minSimilarity: 0.8,
};
export default class RemoveRepetitiveItems extends ItemTransformer {
constructor() {
super('Remove Repetitive Items', 'Remove things like page numbers or license footers.', {
requireColumns: ['x', 'y', 'str'],
requireColumns: ['x', 'y', 'str', 'line'],
debug: {
itemMerger: new LineItemMerger(),
},
@ -16,55 +41,113 @@ export default class RemoveRepetitiveItems extends ItemTransformer {
}
transform(context: TransformContext, inputItems: Item[]): ItemResult {
const fringeOccurences = determineYMinAndMaxForPages(inputItems);
console.log(fringeOccurences);
const pageExtracts = buildExtracts(inputItems);
const yToRemove: number[] = [];
//TODO should be context.pageViewports.length == totalPages
if (fringeOccurences.topY.occurence > (context.pageViewports.length / 3) * 2) {
yToRemove.push(fringeOccurences.topY.y);
}
if (fringeOccurences.bottomY.occurence > (context.pageViewports.length / 3) * 2) {
yToRemove.push(fringeOccurences.bottomY.y);
}
const uniqueYs = flatMap(pageExtracts, (extract) => extract.fringeLines)
.map((line) => line.y)
.filter(onlyUnique);
const numberOfPages = context.pageViewports.length;
const yToRemove = uniqueYs.filter((y) => {
// First check how often an element occurs on the given 'y'.
// Repetetive elements tend to be on the same y all the time or half the time.
const pageOccurence = count(pageExtracts, (extraxt) => extraxt.hasY(y));
const simis = pageExtracts.map((extraxt, idx) => {
const line = extraxt.lineByY(y);
if (line) {
const neighbours = neighbourLines(pageExtracts, idx, y);
const similarities = neighbours.map((nLine) => calculateSimilarity(line, nLine));
return median(similarities);
}
return 0;
});
// TODO more checks
// - same x structure
// - contain chapter highlights
// - contains rising number
return pageOccurence >= numberOfPages * config.minYOccurence && median(simis) >= config.minSimilarity;
});
return {
items: inputItems.filter((item) => !yToRemove.includes(item.data['y'])),
items: transformGroupedByPageAndLine(inputItems, (_, __, items) =>
yToRemove.includes(yFromLine(items)) ? [] : items,
),
messages: [`Filtered out each item with y == ${yToRemove.join('||')}`],
};
}
}
function determineYMinAndMaxForPages(inputItems: Item[]) {
const occurencePerPage: Map<number, number> = new Map();
let globalBottomY = 999;
let globalTopY = 0;
transformGroupedByPage(inputItems, (_, pageItems) => {
let pageMinY = 999;
let pageMaxY = 0;
pageItems.forEach((item) => {
const y = item.data['y'];
pageMinY = Math.min(y, pageMinY);
pageMaxY = Math.max(y, pageMaxY);
function calculateSimilarity(line1: Line, line2: Line): number {
return compareTwoStrings(line1.asStringWithoutNumbers, line2.asStringWithoutNumbers);
}
function neighbourLines(pages: PageExtract[], pageIndex: number, y: number): Line[] {
const neighbourLines: Line[] = [];
//Upstream
for (let index = pageIndex - 1; index > -1 && index >= pageIndex - config.neighbourReach; index--) {
const neighbourLine = pages[index].lineByY(y);
if (neighbourLine) {
neighbourLines.push(neighbourLine);
}
}
//Downstream
for (let index = pageIndex + 1; index < pages.length && index <= pageIndex + config.neighbourReach; index++) {
const neighbourLine = pages[index].lineByY(y);
if (neighbourLine) {
neighbourLines.push(neighbourLine);
}
}
return neighbourLines;
}
function buildExtracts(inputItems: Item[]): PageExtract[] {
const pageExtracts = groupByPage(inputItems).map((pageItems) => {
const lines = groupByLine(pageItems).map((lineItems) => {
const lineY = yFromLine(lineItems);
return new Line(lineY, lineItems);
});
lines.sort((a, b) => {
return a.y - b.y;
});
const occurenceMin = occurencePerPage.get(pageMinY) || 0;
const occurenceMax = occurencePerPage.get(pageMaxY) || 0;
occurencePerPage.set(pageMinY, occurenceMin + 1);
occurencePerPage.set(pageMaxY, occurenceMax + 1);
globalBottomY = Math.min(pageMinY, globalBottomY);
globalTopY = Math.max(pageMaxY, globalTopY);
return [];
const numberOfFringeElements = Math.min(lines.length, config.maxNumberOffTopOrBottomLines);
const topN = lines.slice(0, numberOfFringeElements);
const lastN = lines.slice(lines.length - numberOfFringeElements, lines.length);
const fringeLines = [...topN, ...lastN].filter((line, idx, array) => array.indexOf(line) === idx);
return new PageExtract(pageItems[0].page, fringeLines);
});
return {
bottomY: {
y: globalBottomY,
occurence: occurencePerPage.get(globalBottomY) || 0,
},
topY: {
y: globalTopY,
occurence: occurencePerPage.get(globalTopY) || 0,
},
};
return pageExtracts;
}
function yFromLine(lineItems: Item[]): number {
return mostFrequent(lineItems, 'y') as number;
}
class Line {
asString: string;
asStringWithoutNumbers: string;
constructor(public y: number, public items: Item[]) {
this.asString = items.reduce((all, item) => all + item.data['str'], '');
this.asStringWithoutNumbers = filterOutDigits(this.asString);
}
}
class PageExtract {
constructor(public page: number, public fringeLines: Line[]) {}
hasY(y: number): boolean {
return this.fringeLines.findIndex((line) => line.y === y) >= 0;
}
lineByY(y: number): Line | undefined {
return this.fringeLines.find((line) => line.y === y);
}
}

View File

@ -1,12 +1,35 @@
import Item from 'src/Item';
import {
groupByPage,
groupByLine,
groupByElement,
transformGroupedByPage,
transformGroupedByPageAndLine,
mostFrequent,
flatMap,
onlyUnique,
count,
} from 'src/support/groupingUtils';
import { items } from 'test/testItems';
test('count', async () => {
expect(count([], (_) => true)).toEqual(0);
expect(count([1, 2, 3, 4, 5, 6], (e) => e % 2 == 0)).toEqual(3);
expect(count(['A', 'B', 'c'], (e) => e === e.toUpperCase())).toEqual(2);
});
test('flatMap', async () => {
expect(flatMap([], (e) => e)).toEqual([]);
expect(flatMap([[1, 2], [3], [4, 5, 6]], (e) => e)).toEqual([1, 2, 3, 4, 5, 6]);
expect(flatMap([{ x: [1, 2] }, { x: [3] }, { x: [4, 5, 6] }], (e) => e.x)).toEqual([1, 2, 3, 4, 5, 6]);
});
test('onlyUnique', async () => {
expect([].filter(onlyUnique)).toEqual([]);
expect([1, 2, 3].filter(onlyUnique)).toEqual([1, 2, 3]);
expect([1, 2, 3, 3, 2, 1].filter(onlyUnique)).toEqual([1, 2, 3]);
});
describe('groupByPage', () => {
test('empty', async () => {
expect(groupByPage([])).toEqual([]);
@ -24,6 +47,23 @@ describe('groupByPage', () => {
});
});
describe('groupByLine', () => {
test('empty', async () => {
expect(groupByLine([])).toEqual([]);
});
test('group', async () => {
const groupedItems = [
[new Item(0, { line: 1, id: 1 })],
[new Item(0, { line: 2, id: 2 }), new Item(0, { line: 2, id: 3 })],
[new Item(0, { line: 3, id: 4 })],
];
const flattenedItems = new Array<Item>().concat(...groupedItems);
const transformedItems = groupByLine(flattenedItems);
expect(transformedItems).toEqual(groupedItems);
});
});
describe('groupByElement', () => {
test('empty', async () => {
expect(groupByElement([], 'line')).toEqual([]);
@ -93,3 +133,34 @@ describe('transformGroupedByPageAndLine', () => {
expect(transformedItems.map((item) => item.data['group'])).toEqual(['0/1:1', '1/1:2', '1/2:1', '2/1:1']);
});
});
describe('mostFrequent', () => {
test('empty', async () => {
const majorityItem = mostFrequent([], 'x');
expect(majorityItem).toBeUndefined();
});
test('clear winner1', async () => {
const allItems = items(0, [{ x: 1 }, { x: 1 }, { x: 2 }, { x: 3 }]);
const majorityItem = mostFrequent(allItems, 'x');
expect(majorityItem).toEqual(1);
});
test('clear winner2', async () => {
const allItems = items(0, [{ x: 1 }, { x: 2 }, { x: 3 }, { x: 2 }]);
const majorityItem = mostFrequent(allItems, 'x');
expect(majorityItem).toEqual(2);
});
test('clear winner3 string', async () => {
const allItems = items(0, [{ x: 'A' }, { x: 'B' }, { x: 'C' }, { x: 'C' }]);
const majorityItem = mostFrequent(allItems, 'x');
expect(majorityItem).toEqual('C');
});
test('clear 50/50', async () => {
const allItems = items(0, [{ x: 1 }, { x: 2 }, { x: 1 }, { x: 2 }]);
const majorityItem = mostFrequent(allItems, 'x');
expect(majorityItem).toEqual(2);
});
});

View File

@ -0,0 +1,7 @@
import { filterOutDigits } from 'src/support/stringFunctions';
test('filterOutDigits', async () => {
expect(filterOutDigits('')).toEqual('');
expect(filterOutDigits('a b c')).toEqual('a b c');
expect(filterOutDigits('a1b 2c 3')).toEqual('ab c ');
});

View File

@ -2,7 +2,7 @@
"pages": 19,
"items": 2769,
"groupedItems": 1320,
"changes": 95,
"changes": 247,
"schema": [
{
"name": "line"
@ -31,40 +31,97 @@
]
}
{"page":0,"change":"Removal","str":"Closed syllable word lists 1 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":0,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":0,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":0,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":0,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":1,"change":"Removal","str":"Closed syllable word lists 2 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":1,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":1,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":1,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":1,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":2,"change":"Removal","str":"Closed syllable word lists 3 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":2,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":2,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":2,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":2,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":3,"change":"Removal","str":"Closed syllable word lists 4 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":3,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":3,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":3,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":3,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":4,"change":"Removal","str":"Closed syllable word lists 5 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":4,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":4,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":4,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":4,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":5,"change":"Removal","str":"Closed syllable word lists 6 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":5,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":5,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":5,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":5,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":6,"change":"Removal","str":"Closed syllable word lists 7 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":6,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":6,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":6,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":6,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":7,"change":"Removal","str":"Closed syllable word lists 8 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":7,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":7,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":7,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":7,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":8,"change":"Removal","str":"Closed syllable word lists 9 ","line":0,"x":420.79,"y":745.56,"width":"121.80","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":8,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":8,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":8,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":8,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":9,"change":"Removal","str":"Closed syllable word lists 10 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":9,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":9,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":9,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":9,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":10,"change":"Removal","str":"Closed syllable word lists 11 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":10,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":10,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":10,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":10,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":11,"change":"Removal","str":"Closed syllable word lists 12 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":11,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":11,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":11,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":11,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":12,"change":"Removal","str":"Closed syllable word lists 13 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":12,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":12,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":12,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":12,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":13,"change":"Removal","str":"Closed syllable word lists 14 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":13,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":13,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":13,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":13,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":14,"change":"Removal","str":"Closed syllable word lists 15 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":14,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":14,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":14,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":14,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":15,"change":"Removal","str":"Closed syllable word lists 16 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":15,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":15,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":15,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":15,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":16,"change":"Removal","str":"Closed syllable word lists 17 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":16,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":16,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":16,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":16,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":17,"change":"Removal","str":"Closed syllable word lists 18 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":17,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":17,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":17,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":17,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}
{"page":18,"change":"Removal","str":"Closed syllable word lists 19 ","line":0,"x":415.27,"y":745.56,"width":"127.25","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":18,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","732.12"],"fontName":"ABCDEE+Calibri","x":72.024,"y":732.12,"line":1}
{"page":18,"change":"Removal","str":"Phonics word lists by Susan Jones licensed under Creative Commons Attribution 4.0 International ","line":2,"x":106.22,"y":76.584,"width":"436.20","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":18,"change":"Removal","str":"License ","line":3,"x":507.22,"y":63.144,"width":"37.98","height":"11.04","fontName":["ABCDEE+Calibri"],"dir":["ltr"]}
{"page":18,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","540.10","35.90"],"fontName":"ABCDEE+Calibri","x":540.1,"y":35.904,"line":4}

View File

@ -2,7 +2,7 @@
"pages": 116,
"items": 12112,
"groupedItems": 4993,
"changes": 116,
"changes": 464,
"schema": [
{
"name": "line"
@ -30,119 +30,235 @@
}
]
}
{"page":0,"change":"Removal","str":"1 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":0,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":1,"change":"Removal","str":"2 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":1,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":2,"change":"Removal","str":"3 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":2,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":3,"change":"Removal","str":"4 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":3,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":4,"change":"Removal","str":"5 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":4,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":5,"change":"Removal","str":"6 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":5,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":6,"change":"Removal","str":"7 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":6,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":7,"change":"Removal","str":"8 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":7,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":8,"change":"Removal","str":"9 ","line":0,"x":304.01,"y":22.6801,"width":"6.57","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":8,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02369000000002,"y":10.2,"line":1}
{"page":9,"change":"Removal","str":"10 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":9,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":10,"change":"Removal","str":"11 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":10,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":11,"change":"Removal","str":"12 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":11,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":12,"change":"Removal","str":"13 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":12,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":13,"change":"Removal","str":"14 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":13,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":14,"change":"Removal","str":"15 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":14,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":15,"change":"Removal","str":"16 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":15,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":16,"change":"Removal","str":"17 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":16,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":17,"change":"Removal","str":"18 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":17,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":18,"change":"Removal","str":"19 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":18,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":19,"change":"Removal","str":"20 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":19,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":20,"change":"Removal","str":"21 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":20,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":21,"change":"Removal","str":"22 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":21,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":22,"change":"Removal","str":"23 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":22,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":23,"change":"Removal","str":"24 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":23,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":24,"change":"Removal","str":"25 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":24,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":25,"change":"Removal","str":"26 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":25,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":26,"change":"Removal","str":"27 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":26,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":27,"change":"Removal","str":"28 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":27,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":28,"change":"Removal","str":"29 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":28,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":29,"change":"Removal","str":"30 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":29,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":30,"change":"Removal","str":"31 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":30,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":31,"change":"Removal","str":"32 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":31,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":32,"change":"Removal","str":"33 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":32,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":33,"change":"Removal","str":"34 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":33,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":34,"change":"Removal","str":"35 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":34,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":35,"change":"Removal","str":"36 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":35,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":36,"change":"Removal","str":"37 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":36,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":37,"change":"Removal","str":"38 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":37,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":38,"change":"Removal","str":"39 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":38,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":39,"change":"Removal","str":"40 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":39,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":40,"change":"Removal","str":"41 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":40,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":41,"change":"Removal","str":"42 ","line":0,"x":301.97,"y":22.6801,"width":"10.65","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":41,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":42,"change":"Removal","str":"43 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":42,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":43,"change":"Removal","str":"44 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":43,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":44,"change":"Removal","str":"45 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":44,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":45,"change":"Removal","str":"46 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":45,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":46,"change":"Removal","str":"47 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":46,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":47,"change":"Removal","str":"48 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":47,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":48,"change":"Removal","str":"49 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":48,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":49,"change":"Removal","str":"50 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":49,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":50,"change":"Removal","str":"51 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":50,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":51,"change":"Removal","str":"52 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":51,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":52,"change":"Removal","str":"53 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":52,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":53,"change":"Removal","str":"54 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":53,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":54,"change":"Removal","str":"55 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":54,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":55,"change":"Removal","str":"56 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":55,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":56,"change":"Removal","str":"57 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":56,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":57,"change":"Removal","str":"58 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":57,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":58,"change":"Removal","str":"59 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":58,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":59,"change":"Removal","str":"60 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":59,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":60,"change":"Removal","str":"61 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":60,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":61,"change":"Removal","str":"62 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":61,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":62,"change":"Removal","str":"63 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":62,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":63,"change":"Removal","str":"64 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":63,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":64,"change":"Removal","str":"65 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":64,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":65,"change":"Removal","str":"66 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":65,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":66,"change":"Removal","str":"67 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":66,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":67,"change":"Removal","str":"68 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":67,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":68,"change":"Removal","str":"69 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":68,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":69,"change":"Removal","str":"70 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":69,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":70,"change":"Removal","str":"71 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":70,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":71,"change":"Removal","str":"72 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":71,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":72,"change":"Removal","str":"73 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":72,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":73,"change":"Removal","str":"74 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":73,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":74,"change":"Removal","str":"75 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":74,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":75,"change":"Removal","str":"76 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":75,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":76,"change":"Removal","str":"77 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":76,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":77,"change":"Removal","str":"78 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":77,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":78,"change":"Removal","str":"79 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":78,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":79,"change":"Removal","str":"80 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":79,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":80,"change":"Removal","str":"81 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":80,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":81,"change":"Removal","str":"82 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":81,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":82,"change":"Removal","str":"83 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":82,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":83,"change":"Removal","str":"84 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":83,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":84,"change":"Removal","str":"85 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":84,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":85,"change":"Removal","str":"86 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":85,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":86,"change":"Removal","str":"87 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":86,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":87,"change":"Removal","str":"88 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":87,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":88,"change":"Removal","str":"89 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":88,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":89,"change":"Removal","str":"90 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":89,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":90,"change":"Removal","str":"91 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":90,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":91,"change":"Removal","str":"92 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":91,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":92,"change":"Removal","str":"93 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":92,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":93,"change":"Removal","str":"94 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":93,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":94,"change":"Removal","str":"95 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":94,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":95,"change":"Removal","str":"96 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":95,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":96,"change":"Removal","str":"97 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":96,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":97,"change":"Removal","str":"98 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":97,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":98,"change":"Removal","str":"99 ","line":0,"x":301.97,"y":22.6801,"width":"10.66","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":98,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02416000000005,"y":10.2,"line":1}
{"page":99,"change":"Removal","str":"100 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":99,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":100,"change":"Removal","str":"101 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":100,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":101,"change":"Removal","str":"102 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":101,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":102,"change":"Removal","str":"103 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":102,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":103,"change":"Removal","str":"104 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":103,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":104,"change":"Removal","str":"105 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":104,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":105,"change":"Removal","str":"106 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":105,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":106,"change":"Removal","str":"107 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":106,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":107,"change":"Removal","str":"108 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":107,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":108,"change":"Removal","str":"109 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":108,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":109,"change":"Removal","str":"110 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":109,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":110,"change":"Removal","str":"111 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":110,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":111,"change":"Removal","str":"112 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":111,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":112,"change":"Removal","str":"113 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":112,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":113,"change":"Removal","str":"114 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":113,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":114,"change":"Removal","str":"115 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":114,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}
{"page":115,"change":"Removal","str":"116 ","line":0,"x":299.93,"y":22.6801,"width":"14.74","height":"11.04","fontName":["NTKUYH+Calibri"],"dir":["ltr"]}
{"page":115,"change":"Removal","str":" ","dir":"ltr","width":"2.50","height":"11.04","transform":["11.04","0.00","0.00","11.04","72.02","10.20"],"fontName":"NTKUYH+Calibri","x":72.02389999999997,"y":10.2,"line":1}

View File

@ -2,7 +2,7 @@
"pages": 60,
"items": 6774,
"groupedItems": 1914,
"changes": 0,
"changes": 1003,
"schema": [
{
"name": "line"
@ -30,3 +30,180 @@
}
]
}
{"page":1,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 2 ","line":0,"x":99.264,"y":30.84,"width":"227.04","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":1,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":1,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":2,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 3 ","line":0,"x":99.264,"y":30.84,"width":"227.04","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":2,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":2,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":3,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 4 ","line":0,"x":99.264,"y":30.84,"width":"227.04","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":3,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":3,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":4,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 5 ","line":0,"x":99.264,"y":30.84,"width":"227.04","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":4,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":4,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":5,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 6 ","line":0,"x":99.264,"y":30.84,"width":"227.04","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":5,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":5,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":6,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 7 ","line":0,"x":99.264,"y":30.84,"width":"227.04","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":6,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":6,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":7,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 8 ","line":0,"x":99.264,"y":30.84,"width":"227.04","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":7,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":7,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":8,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 9 ","line":0,"x":99.264,"y":30.84,"width":"227.04","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":8,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":8,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":9,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 10 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":9,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":9,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":10,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 11 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":10,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":10,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":11,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 12 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":11,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":11,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":12,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 13 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":12,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":12,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":13,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 14 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":13,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":13,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":14,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 15 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":14,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":14,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":15,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 16 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":15,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":15,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":16,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 17 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":16,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":16,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":17,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 18 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":17,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":17,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":18,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 19 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":18,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":18,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":19,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 20 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":19,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":19,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":20,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 21 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":20,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":20,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":21,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 22 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":21,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":21,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":22,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 23 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":22,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":22,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":23,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 24 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":23,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":23,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":24,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 25 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":24,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":24,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":25,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 26 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":25,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":25,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":26,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 27 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":26,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":26,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":27,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 28 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":27,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":27,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":28,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 29 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":28,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":28,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":29,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 30 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":29,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":29,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":30,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 31 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":30,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":30,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":31,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 32 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":31,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":31,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":32,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 33 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":32,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":32,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":33,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 34 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":33,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":33,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":34,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 35 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":34,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":34,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":35,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 36 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":35,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":35,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":36,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 37 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":36,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":36,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":37,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 38 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":37,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":37,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":38,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 39 ","line":0,"x":99.264,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":38,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":38,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":39,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 40 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":39,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":39,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":40,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 41 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":40,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":40,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":41,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 42 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":41,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":41,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":42,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 43 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":42,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":42,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":43,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 44 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":43,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":43,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":44,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 45 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":44,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":44,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":45,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 46 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":45,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":45,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":46,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 47 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":46,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":46,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":47,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 48 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":47,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":47,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":48,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 49 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":48,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":48,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":49,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 50 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":49,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":49,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":50,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 51 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":50,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":50,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":51,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 52 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":51,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":51,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":52,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 53 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":52,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":52,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":53,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 54 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":53,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":53,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":54,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 55 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":54,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":54,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":55,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 56 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":55,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":55,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":56,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 57 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":56,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":56,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":57,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 58 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":57,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":57,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":58,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 59 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":58,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":58,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":59,"change":"Removal","str":"Quality Improvement Clinic Ltd. P a g e | 60 ","line":0,"x":53.88,"y":30.84,"width":"233.14","height":"11.04","fontName":[null],"dir":["ltr"]}
{"page":59,"change":"Removal","str":" ","dir":"ltr","width":"3.07","height":"11.04","transform":["11.04","0.00","0.00","11.04","744.58","44.40"],"x":744.58,"y":44.4,"line":1}
{"page":59,"change":"Removal","str":"August 2015 ","line":2,"x":682.78,"y":31.68,"width":"64.88","height":"11.04","fontName":[null],"dir":["ltr"]}

View File

@ -2,7 +2,7 @@
"pages": 27,
"items": 2053,
"groupedItems": 1545,
"changes": 0,
"changes": 17,
"schema": [
{
"name": "line"
@ -30,3 +30,20 @@
}
]
}
{"page":2,"change":"Removal","str":"3","dir":"ltr","width":"6.02","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.96","16.35"],"fontName":"Gill Sans MT","x":812.962,"y":16.346,"line":16}
{"page":4,"change":"Removal","str":"5","dir":"ltr","width":"6.02","height":"12.00","transform":["12.00","0.00","0.00","12.00","811.49","16.35"],"fontName":"Gill Sans MT","x":811.492,"y":16.346,"line":42}
{"page":5,"change":"Removal","str":" 6","dir":"ltr","width":"19.33","height":"12.00","transform":["12.00","0.00","0.00","12.00","6.49","16.35"],"fontName":"Gill Sans MT","x":6.488,"y":16.346,"line":27}
{"page":6,"change":"Removal","str":"7","dir":"ltr","width":"6.02","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.60","16.35"],"fontName":"Gill Sans MT","x":812.595,"y":16.346,"line":48}
{"page":7,"change":"Removal","str":" 8","dir":"ltr","width":"12.67","height":"12.00","transform":["12.00","0.00","0.00","12.00","6.49","16.35"],"fontName":"Gill Sans MT","x":6.489,"y":16.346,"line":58}
{"page":8,"change":"Removal","str":"9","dir":"ltr","width":"6.02","height":"12.00","transform":["12.00","0.00","0.00","12.00","813.78","16.35"],"fontName":"Gill Sans MT","x":813.78,"y":16.346,"line":38}
{"page":9,"change":"Removal","str":" 10","dir":"ltr","width":"21.55","height":"12.00","transform":["12.00","0.00","0.00","12.00","8.57","16.35"],"fontName":"Gill Sans MT","x":8.572,"y":16.346,"line":59}
{"page":10,"change":"Removal","str":"11","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.74","16.35"],"fontName":"Gill Sans MT","x":812.738,"y":16.346,"line":63}
{"page":12,"change":"Removal","str":"13","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.74","16.35"],"fontName":"Gill Sans MT","x":812.738,"y":16.346,"line":16}
{"page":14,"change":"Removal","str":"15","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.74","16.35"],"fontName":"Gill Sans MT","x":812.738,"y":16.346,"line":61}
{"page":15,"change":"Removal","str":" 16","dir":"ltr","width":"21.55","height":"12.00","transform":["12.00","0.00","0.00","12.00","6.49","16.35"],"fontName":"Gill Sans MT","x":6.488,"y":16.346,"line":5}
{"page":16,"change":"Removal","str":"17","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.74","16.35"],"fontName":"Gill Sans MT","x":812.738,"y":16.346,"line":60}
{"page":18,"change":"Removal","str":"19","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.74","16.35"],"fontName":"Gill Sans MT","x":812.738,"y":16.346,"line":62}
{"page":20,"change":"Removal","str":"21","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.74","16.35"],"fontName":"Gill Sans MT","x":812.738,"y":16.346,"line":55}
{"page":22,"change":"Removal","str":"23","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.70","16.35"],"fontName":"Gill Sans MT","x":812.696,"y":16.346,"line":53}
{"page":24,"change":"Removal","str":"25","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","812.60","16.35"],"fontName":"Gill Sans MT","x":812.595,"y":16.346,"line":46}
{"page":27,"change":"Removal","str":"28","dir":"ltr","width":"12.03","height":"12.00","transform":["12.00","0.00","0.00","12.00","810.59","16.35"],"fontName":"Gill Sans MT","x":810.59,"y":16.346,"line":60}

View File

@ -2,7 +2,7 @@
"pages": 4,
"items": 669,
"groupedItems": 399,
"changes": 10,
"changes": 16,
"schema": [
{
"name": "line"
@ -31,6 +31,12 @@
]
}
{"page":0,"change":"Removal","str":" ","dir":"ltr","width":"3.00","height":"12.00","transform":["12.00","0.00","0.00","12.00","90.03","38.52"],"fontName":"BCDEEE+Garamond-Bold","x":90.025,"y":38.525,"line":3}
{"page":1,"change":"Removal","str":" ","dir":"ltr","width":"3.00","height":"12.00","transform":["12.00","0.00","0.00","12.00","540.23","746.22"],"fontName":"BCDEEE+Garamond-Bold","x":540.23,"y":746.22,"line":0}
{"page":1,"change":"Removal","str":" ","dir":"ltr","width":"2.71","height":"12.00","transform":["12.00","0.00","0.00","12.00","540.23","731.72"],"fontName":"BCDFEE+Calibri","x":540.23,"y":731.72,"line":1}
{"page":1,"change":"Removal","str":" ","line":2,"x":90.025,"y":38.525,"width":"6.00","height":"12.00","fontName":["BCDEEE+Garamond-Bold"],"dir":["ltr"]}
{"page":2,"change":"Removal","str":" ","dir":"ltr","width":"3.00","height":"12.00","transform":["12.00","0.00","0.00","12.00","540.23","746.22"],"fontName":"BCDEEE+Garamond-Bold","x":540.23,"y":746.22,"line":0}
{"page":2,"change":"Removal","str":" ","dir":"ltr","width":"2.71","height":"12.00","transform":["12.00","0.00","0.00","12.00","540.23","731.72"],"fontName":"BCDFEE+Calibri","x":540.23,"y":731.72,"line":1}
{"page":2,"change":"Removal","str":" ","line":2,"x":90.025,"y":38.525,"width":"6.00","height":"12.00","fontName":["BCDEEE+Garamond-Bold"],"dir":["ltr"]}
{"page":3,"change":"Removal","str":" ","dir":"ltr","width":"3.00","height":"12.00","transform":["12.00","0.00","0.00","12.00","540.23","746.22"],"fontName":"BCDEEE+Garamond-Bold","x":540.23,"y":746.22,"line":0}
{"page":3,"change":"Removal","str":" ","dir":"ltr","width":"2.71","height":"12.00","transform":["12.00","0.00","0.00","12.00","540.23","731.72"],"fontName":"BCDFEE+Calibri","x":540.23,"y":731.72,"line":1}
{"page":3,"change":"Removal","str":" ","line":2,"x":90.025,"y":38.525,"width":"6.00","height":"12.00","fontName":["BCDEEE+Garamond-Bold"],"dir":["ltr"]}

View File

@ -2,7 +2,7 @@
"pages": 293,
"items": 10835,
"groupedItems": 7199,
"changes": 1169,
"changes": 2045,
"schema": [
{
"name": "line"
@ -31,295 +31,587 @@
]
}
{"page":0,"change":"Removal","str":" ","dir":"ltr","width":"3.00","height":"12.00","transform":["12.00","0.00","0.00","12.00","198.00","44.76"],"x":198,"y":44.76,"line":0}
{"page":1,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":1,"change":"Removal","str":"2 of 293 ","line":1,"x":178.68,"y":44.76,"width":"41.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":2,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":2,"change":"Removal","str":"3 of 293 ","line":1,"x":178.68,"y":44.76,"width":"41.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":3,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":3,"change":"Removal","str":"4 of 293 ","line":1,"x":178.68,"y":44.76,"width":"41.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":4,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":4,"change":"Removal","str":"5 of 293 ","line":1,"x":178.68,"y":44.76,"width":"41.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":5,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":5,"change":"Removal","str":"6 of 293 ","line":1,"x":178.68,"y":44.76,"width":"41.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":6,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":6,"change":"Removal","str":"7 of 293 ","line":1,"x":178.68,"y":44.76,"width":"41.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":7,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":7,"change":"Removal","str":"8 of 293 ","line":1,"x":178.68,"y":44.76,"width":"41.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":8,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":8,"change":"Removal","str":"9 of 293 ","line":1,"x":178.68,"y":44.76,"width":"41.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":9,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":9,"change":"Removal","str":"10 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":10,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":10,"change":"Removal","str":"11 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":11,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":11,"change":"Removal","str":"12 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":12,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":12,"change":"Removal","str":"13 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":13,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":13,"change":"Removal","str":"14 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":14,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":14,"change":"Removal","str":"15 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":15,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":15,"change":"Removal","str":"16 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":16,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":16,"change":"Removal","str":"17 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":17,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":17,"change":"Removal","str":"18 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":18,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":18,"change":"Removal","str":"19 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":19,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":19,"change":"Removal","str":"20 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":20,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":20,"change":"Removal","str":"21 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":21,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":21,"change":"Removal","str":"22 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":22,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":22,"change":"Removal","str":"23 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":23,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":23,"change":"Removal","str":"24 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":24,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":24,"change":"Removal","str":"25 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":25,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":25,"change":"Removal","str":"26 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":26,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":26,"change":"Removal","str":"27 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":27,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":27,"change":"Removal","str":"28 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":28,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":28,"change":"Removal","str":"29 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":29,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":29,"change":"Removal","str":"30 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":30,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":30,"change":"Removal","str":"31 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":31,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":31,"change":"Removal","str":"32 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":32,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":32,"change":"Removal","str":"33 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":33,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":33,"change":"Removal","str":"34 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":34,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":34,"change":"Removal","str":"35 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":35,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":35,"change":"Removal","str":"36 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":36,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":36,"change":"Removal","str":"37 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":37,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":37,"change":"Removal","str":"38 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":38,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":38,"change":"Removal","str":"39 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":39,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":39,"change":"Removal","str":"40 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":40,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":40,"change":"Removal","str":"41 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":41,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":41,"change":"Removal","str":"42 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":42,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":42,"change":"Removal","str":"43 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":43,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":43,"change":"Removal","str":"44 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":44,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":44,"change":"Removal","str":"45 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":45,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":45,"change":"Removal","str":"46 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":46,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":46,"change":"Removal","str":"47 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":47,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":47,"change":"Removal","str":"48 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":48,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":48,"change":"Removal","str":"49 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":49,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":49,"change":"Removal","str":"50 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":50,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":50,"change":"Removal","str":"51 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":51,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":51,"change":"Removal","str":"52 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":52,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":52,"change":"Removal","str":"53 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":53,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":53,"change":"Removal","str":"54 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":54,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":54,"change":"Removal","str":"55 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":55,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":55,"change":"Removal","str":"56 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":56,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":56,"change":"Removal","str":"57 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":57,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":57,"change":"Removal","str":"58 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":58,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":58,"change":"Removal","str":"59 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":59,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":59,"change":"Removal","str":"60 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":60,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":60,"change":"Removal","str":"61 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":61,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":61,"change":"Removal","str":"62 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":62,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":62,"change":"Removal","str":"63 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":63,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":63,"change":"Removal","str":"64 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":64,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":64,"change":"Removal","str":"65 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":65,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":65,"change":"Removal","str":"66 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":66,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":66,"change":"Removal","str":"67 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":67,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":67,"change":"Removal","str":"68 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":68,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":68,"change":"Removal","str":"69 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":69,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":69,"change":"Removal","str":"70 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":70,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":70,"change":"Removal","str":"71 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":71,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":71,"change":"Removal","str":"72 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":72,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":72,"change":"Removal","str":"73 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":73,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":73,"change":"Removal","str":"74 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":74,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":74,"change":"Removal","str":"75 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":75,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":75,"change":"Removal","str":"76 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":76,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":76,"change":"Removal","str":"77 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":77,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":77,"change":"Removal","str":"78 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":78,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":78,"change":"Removal","str":"79 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":79,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":79,"change":"Removal","str":"80 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":80,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":80,"change":"Removal","str":"81 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":81,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":81,"change":"Removal","str":"82 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":82,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":82,"change":"Removal","str":"83 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":83,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":83,"change":"Removal","str":"84 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":84,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":84,"change":"Removal","str":"85 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":85,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":85,"change":"Removal","str":"86 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":86,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":86,"change":"Removal","str":"87 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":87,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":87,"change":"Removal","str":"88 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":88,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":88,"change":"Removal","str":"89 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":89,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":89,"change":"Removal","str":"90 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":90,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":90,"change":"Removal","str":"91 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":91,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":91,"change":"Removal","str":"92 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":92,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":92,"change":"Removal","str":"93 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":93,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":93,"change":"Removal","str":"94 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":94,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":94,"change":"Removal","str":"95 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":95,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":95,"change":"Removal","str":"96 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":96,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":96,"change":"Removal","str":"97 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":97,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":97,"change":"Removal","str":"98 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":98,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":98,"change":"Removal","str":"99 of 293 ","line":1,"x":175.68,"y":44.76,"width":"47.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":99,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":99,"change":"Removal","str":"100 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":100,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":100,"change":"Removal","str":"101 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":101,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":101,"change":"Removal","str":"102 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":102,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":102,"change":"Removal","str":"103 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":103,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":103,"change":"Removal","str":"104 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":104,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":104,"change":"Removal","str":"105 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":105,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":105,"change":"Removal","str":"106 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":106,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":106,"change":"Removal","str":"107 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":107,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":107,"change":"Removal","str":"108 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":108,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":108,"change":"Removal","str":"109 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":109,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":109,"change":"Removal","str":"110 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":110,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":110,"change":"Removal","str":"111 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":111,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":111,"change":"Removal","str":"112 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":112,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":112,"change":"Removal","str":"113 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":113,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":113,"change":"Removal","str":"114 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":114,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":114,"change":"Removal","str":"115 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":115,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":115,"change":"Removal","str":"116 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":116,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":116,"change":"Removal","str":"117 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":117,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":117,"change":"Removal","str":"118 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":118,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":118,"change":"Removal","str":"119 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":119,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":119,"change":"Removal","str":"120 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":120,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":120,"change":"Removal","str":"121 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":121,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":121,"change":"Removal","str":"122 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":122,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":122,"change":"Removal","str":"123 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":123,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":123,"change":"Removal","str":"124 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":124,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":124,"change":"Removal","str":"125 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":125,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":125,"change":"Removal","str":"126 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":126,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":126,"change":"Removal","str":"127 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":127,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":127,"change":"Removal","str":"128 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":128,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":128,"change":"Removal","str":"129 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":129,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":129,"change":"Removal","str":"130 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":130,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":130,"change":"Removal","str":"131 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":131,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":131,"change":"Removal","str":"132 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":132,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":132,"change":"Removal","str":"133 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":133,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":133,"change":"Removal","str":"134 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":134,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":134,"change":"Removal","str":"135 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":135,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":135,"change":"Removal","str":"136 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":136,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":136,"change":"Removal","str":"137 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":137,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":137,"change":"Removal","str":"138 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":138,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":138,"change":"Removal","str":"139 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":139,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":139,"change":"Removal","str":"140 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":140,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":140,"change":"Removal","str":"141 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":141,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":141,"change":"Removal","str":"142 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":142,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":142,"change":"Removal","str":"143 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":143,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":143,"change":"Removal","str":"144 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":144,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":144,"change":"Removal","str":"145 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":145,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":145,"change":"Removal","str":"146 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":146,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":146,"change":"Removal","str":"147 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":147,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":147,"change":"Removal","str":"148 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":148,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":148,"change":"Removal","str":"149 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":149,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":149,"change":"Removal","str":"150 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":150,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":150,"change":"Removal","str":"151 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":151,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":151,"change":"Removal","str":"152 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":152,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":152,"change":"Removal","str":"153 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":153,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":153,"change":"Removal","str":"154 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":154,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":154,"change":"Removal","str":"155 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":155,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":155,"change":"Removal","str":"156 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":156,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":156,"change":"Removal","str":"157 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":157,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":157,"change":"Removal","str":"158 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":158,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":158,"change":"Removal","str":"159 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":159,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":159,"change":"Removal","str":"160 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":160,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":160,"change":"Removal","str":"161 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":161,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":161,"change":"Removal","str":"162 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":162,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":162,"change":"Removal","str":"163 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":163,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":163,"change":"Removal","str":"164 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":164,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":164,"change":"Removal","str":"165 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":165,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":165,"change":"Removal","str":"166 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":166,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":166,"change":"Removal","str":"167 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":167,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":167,"change":"Removal","str":"168 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":168,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":168,"change":"Removal","str":"169 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":169,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":169,"change":"Removal","str":"170 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":170,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":170,"change":"Removal","str":"171 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":171,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":171,"change":"Removal","str":"172 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":172,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":172,"change":"Removal","str":"173 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":173,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":173,"change":"Removal","str":"174 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":174,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":174,"change":"Removal","str":"175 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":175,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":175,"change":"Removal","str":"176 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":176,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":176,"change":"Removal","str":"177 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":177,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":177,"change":"Removal","str":"178 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":178,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":178,"change":"Removal","str":"179 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":179,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":179,"change":"Removal","str":"180 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":180,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":180,"change":"Removal","str":"181 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":181,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":181,"change":"Removal","str":"182 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":182,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":182,"change":"Removal","str":"183 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":183,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":183,"change":"Removal","str":"184 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":184,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":184,"change":"Removal","str":"185 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":185,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":185,"change":"Removal","str":"186 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":186,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":186,"change":"Removal","str":"187 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":187,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":187,"change":"Removal","str":"188 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":188,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":188,"change":"Removal","str":"189 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":189,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":189,"change":"Removal","str":"190 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":190,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":190,"change":"Removal","str":"191 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":191,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":191,"change":"Removal","str":"192 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":192,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":192,"change":"Removal","str":"193 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":193,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":193,"change":"Removal","str":"194 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":194,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":194,"change":"Removal","str":"195 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":195,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":195,"change":"Removal","str":"196 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":196,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":196,"change":"Removal","str":"197 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":197,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":197,"change":"Removal","str":"198 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":198,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":198,"change":"Removal","str":"199 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":199,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":199,"change":"Removal","str":"200 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":200,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":200,"change":"Removal","str":"201 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":201,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":201,"change":"Removal","str":"202 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":202,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":202,"change":"Removal","str":"203 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":203,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":203,"change":"Removal","str":"204 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":204,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":204,"change":"Removal","str":"205 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":205,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":205,"change":"Removal","str":"206 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":206,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":206,"change":"Removal","str":"207 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":207,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":207,"change":"Removal","str":"208 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":208,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":208,"change":"Removal","str":"209 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":209,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":209,"change":"Removal","str":"210 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":210,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":210,"change":"Removal","str":"211 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":211,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":211,"change":"Removal","str":"212 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":212,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":212,"change":"Removal","str":"213 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":213,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":213,"change":"Removal","str":"214 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":214,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":214,"change":"Removal","str":"215 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":215,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":215,"change":"Removal","str":"216 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":216,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":216,"change":"Removal","str":"217 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":217,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":217,"change":"Removal","str":"218 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":218,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":218,"change":"Removal","str":"219 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":219,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":219,"change":"Removal","str":"220 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":220,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":220,"change":"Removal","str":"221 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":221,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":221,"change":"Removal","str":"222 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":222,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":222,"change":"Removal","str":"223 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":223,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":223,"change":"Removal","str":"224 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":224,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":224,"change":"Removal","str":"225 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":225,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":225,"change":"Removal","str":"226 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":226,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":226,"change":"Removal","str":"227 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":227,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":227,"change":"Removal","str":"228 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":228,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":228,"change":"Removal","str":"229 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":229,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":229,"change":"Removal","str":"230 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":230,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":230,"change":"Removal","str":"231 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":231,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":231,"change":"Removal","str":"232 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":232,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":232,"change":"Removal","str":"233 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":233,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":233,"change":"Removal","str":"234 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":234,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":234,"change":"Removal","str":"235 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":235,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":235,"change":"Removal","str":"236 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":236,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":236,"change":"Removal","str":"237 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":237,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":237,"change":"Removal","str":"238 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":238,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":238,"change":"Removal","str":"239 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":239,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":239,"change":"Removal","str":"240 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":240,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":240,"change":"Removal","str":"241 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":241,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":241,"change":"Removal","str":"242 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":242,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":242,"change":"Removal","str":"243 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":243,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":243,"change":"Removal","str":"244 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":244,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":244,"change":"Removal","str":"245 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":245,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":245,"change":"Removal","str":"246 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":246,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":246,"change":"Removal","str":"247 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":247,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":247,"change":"Removal","str":"248 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":248,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":248,"change":"Removal","str":"249 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":249,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":249,"change":"Removal","str":"250 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":250,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":250,"change":"Removal","str":"251 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":251,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":251,"change":"Removal","str":"252 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":252,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":252,"change":"Removal","str":"253 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":253,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":253,"change":"Removal","str":"254 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":254,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":254,"change":"Removal","str":"255 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":255,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":255,"change":"Removal","str":"256 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":256,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":256,"change":"Removal","str":"257 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":257,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":257,"change":"Removal","str":"258 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":258,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":258,"change":"Removal","str":"259 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":259,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":259,"change":"Removal","str":"260 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":260,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":260,"change":"Removal","str":"261 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":261,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":261,"change":"Removal","str":"262 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":262,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":262,"change":"Removal","str":"263 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":263,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":263,"change":"Removal","str":"264 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":264,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":264,"change":"Removal","str":"265 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":265,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":265,"change":"Removal","str":"266 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":266,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":266,"change":"Removal","str":"267 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":267,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":267,"change":"Removal","str":"268 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":268,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":268,"change":"Removal","str":"269 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":269,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":269,"change":"Removal","str":"270 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":270,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":270,"change":"Removal","str":"271 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":271,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":271,"change":"Removal","str":"272 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":272,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":272,"change":"Removal","str":"273 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":273,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":273,"change":"Removal","str":"274 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":274,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":274,"change":"Removal","str":"275 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":275,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":275,"change":"Removal","str":"276 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":276,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":276,"change":"Removal","str":"277 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":277,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":277,"change":"Removal","str":"278 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":278,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":278,"change":"Removal","str":"279 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":279,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":279,"change":"Removal","str":"280 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":280,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":280,"change":"Removal","str":"281 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":281,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":281,"change":"Removal","str":"282 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":282,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":282,"change":"Removal","str":"283 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":283,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":283,"change":"Removal","str":"284 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":284,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":284,"change":"Removal","str":"285 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":285,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":285,"change":"Removal","str":"286 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":286,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":286,"change":"Removal","str":"287 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":287,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":287,"change":"Removal","str":"288 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":288,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":288,"change":"Removal","str":"289 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":289,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":289,"change":"Removal","str":"290 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":290,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":290,"change":"Removal","str":"291 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":291,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":291,"change":"Removal","str":"292 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}
{"page":292,"change":"Removal","str":"The War of the Worlds ","line":0,"x":57.6,"y":493.8,"width":"105.72","height":"10.98","fontName":[null],"dir":["ltr"]}
{"page":292,"change":"Removal","str":"293 of 293 ","line":1,"x":172.68,"y":44.76,"width":"53.60","height":"12.00","fontName":[null],"dir":["ltr"]}

4916
ui/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -22,6 +22,7 @@
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"pdfjs-dist": "^2.6.347",
"string-similarity": "^4.0.4",
"svelte-file-dropzone": "0.0.15",
"uuid": "^8.3.2"
},