}
// getPdf()
if (rotate % 90 != 0) {
rotate = 0;
} else if (rotate >= 360) {
rotate = rotate % 360;
} else if (rotate < 0) {
// The spec doesn't cover negatives, assume its counterclockwise
// rotation. The following is the other implementation of modulo.
rotate = ((rotate % 360) + 360) % 360;
}
return shadow(this, 'rotate', rotate);
},
getContentStream: function Page_getContentStream() {
var content = this.content;
if (isArray(content)) {
// fetching items
var xref = this.xref;
var i, n = content.length;
var streams = [];
for (i = 0; i < n; ++i)
streams.push(xref.fetchIfRef(content[i]));
content = new StreamsSequenceStream(streams);
} else if (isStream(content)) {
content.reset();
} else if (!content) {
// replacing non-existent page content with empty one
content = new NullStream();
}
return content;
},
getOperatorList: function Page_getOperatorList(handler, dependency) {
var xref = this.xref;
var contentStream = this.getContentStream();
var resources = this.resources;
var pe = this.pe = new PartialEvaluator(
xref, handler, this.pageIndex,
'p' + this.pageIndex + '_');
return pe.getOperatorList(contentStream, resources, dependency);
},
extractTextContent: function Page_extractTextContent() {
var handler = {
on: function nullHandlerOn() {},
send: function nullHandlerSend() {}
};
var xref = this.xref;
var contentStream = this.getContentStream();
var resources = xref.fetchIfRef(this.resources);
var pe = new PartialEvaluator(
xref, handler, this.pageIndex,
'p' + this.pageIndex + '_');
return pe.getTextContent(contentStream, resources);
},
getLinks: function Page_getLinks() {
var links = [];
var annotations = this.getAnnotations();
var i, n = annotations.length;
for (i = 0; i < n; ++i) {
if (annotations[i].type != 'Link')
continue;
links.push(annotations[i]);
}
return links;
},
getAnnotations: function Page_getAnnotations() {
var xref = this.xref;
function getInheritableProperty(annotation, name) {
var item = annotation;
while (item && !item.has(name)) {
item = item.get('Parent');
}
if (!item)
return null;
return item.get(name);
}
function isValidUrl(url) {
if (!url)
return false;
var colon = url.indexOf(':');
if (colon < 0)
return false;
var protocol = url.substr(0, colon);
switch (protocol) {
case 'http':
case 'https':
case 'ftp':
case 'mailto':
return true;
default:
return false;
}
}
var annotations = this.annotations || [];
var i, n = annotations.length;
var items = [];
for (i = 0; i < n; ++i) {
var annotationRef = annotations[i];
var annotation = xref.fetch(annotationRef);
if (!isDict(annotation))
continue;
var subtype = annotation.get('Subtype');
if (!isName(subtype))
continue;
var rect = annotation.get('Rect');
var item = {};
item.type = subtype.name;
item.rect = rect;
switch (subtype.name) {
case 'Link':
var a = annotation.get('A');
if (a) {
switch (a.get('S').name) {
case 'URI':
var url = a.get('URI');
// TODO: pdf spec mentions urls can be relative to a Base
// entry in the dictionary.
if (!isValidUrl(url))
url = '';
item.url = url;
break;
case 'GoTo':
item.dest = a.get('D');
break;
case 'GoToR':
var url = a.get('F');
// TODO: pdf reference says that GoToR
// can also have 'NewWindow' attribute
if (!isValidUrl(url))
url = '';
item.url = url;
item.dest = a.get('D');
break;
default:
TODO('unrecognized link type: ' + a.get('S').name);
}
} else if (annotation.has('Dest')) {
// simple destination link
var dest = annotation.get('Dest');
item.dest = isName(dest) ? dest.name : dest;
}
break;
case 'Widget':
var fieldType = getInheritableProperty(annotation, 'FT');
if (!isName(fieldType))
break;
item.fieldType = fieldType.name;
// Building the full field name by collecting the field and
// its ancestors 'T' properties and joining them using '.'.
var fieldName = [];
var namedItem = annotation, ref = annotationRef;
while (namedItem) {
var parent = namedItem.get('Parent');
var parentRef = namedItem.getRaw('Parent');
var name = namedItem.get('T');
if (name) {
fieldName.unshift(stringToPDFString(name));
} else {
// The field name is absent, that means more than one field
// with the same name may exist. Replacing the empty name
// with the '`' plus index in the parent's 'Kids' array.
// This is not in the PDF spec but necessary to id the
// the input controls.
var kids = parent.get('Kids');
var j, jj;
for (j = 0, jj = kids.length; j < jj; j++) {
var kidRef = kids[j];
if (kidRef.num == ref.num && kidRef.gen == ref.gen)
break;
}
fieldName.unshift('`' + j);
}
namedItem = parent;
ref = parentRef;
}
item.fullName = fieldName.join('.');
var alternativeText = stringToPDFString(annotation.get('TU') || '');
item.alternativeText = alternativeText;
stream.pos = pos;
var index = backwards ? str.lastIndexOf(needle) : str.indexOf(needle);
if (index == -1)
return false; /* not found */
stream.pos += index;
return true; /* found */
}
var DocumentInfoValidators = {
get entries() {
// Lazily build this since all the validation functions below are not
// defined until after this file loads.
return shadow(this, 'entries', {
Title: isString,
Author: isString,
Subject: isString,
Keywords: isString,
Creator: isString,
Producer: isString,
CreationDate: isString,
ModDate: isString,
Trapped: isName
});
}
};
PDFDocument.prototype = {
get linearization() {
var length = this.stream.length;
var linearization = false;
if (length) {
try {
linearization = new Linearization(this.stream);
if (linearization.length != length)
linearization = false;
} catch (err) {
warn('The linearization data is not available ' +
'or unreadable pdf data is found');
linearization = false;
}
}
// shadow the prototype getter with a data property
return shadow(this, 'linearization', linearization);
},
get startXRef() {
var stream = this.stream;
var startXRef = 0;
var linearization = this.linearization;
if (linearization) {
// Find end of first obj.
stream.reset();
if (find(stream, 'endobj', 1024))
startXRef = stream.pos + 6;
} else {
// Find startxref by jumping backward from the end of the file.
var step = 1024;
var found = false, pos = stream.end;
while (!found && pos > 0) {
pos -= step - 'startxref'.length;
if (pos < 0)
pos = 0;
stream.pos = pos;
found = find(stream, 'startxref', step, true);
}
if (found) {
stream.skip(9);
var ch;
do {
ch = stream.getChar();
} while (Lexer.isSpace(ch));
var str = '';
while ((ch - '0') <= 9) {
str += ch;
ch = stream.getChar();
}
startXRef = parseInt(str, 10);
if (isNaN(startXRef))
startXRef = 0;
}
}
// shadow the prototype getter with a data property
return shadow(this, 'startXRef', startXRef);
},
get mainXRefEntriesOffset() {
var mainXRefEntriesOffset = 0;
var linearization = this.linearization;
if (linearization)
mainXRefEntriesOffset = linearization.mainXRefEntriesOffset;
// shadow the prototype getter with a data property
return shadow(this, 'mainXRefEntriesOffset', mainXRefEntriesOffset);
},
// Find the header, remove leading garbage and setup the stream
// starting from the header.
checkHeader: function PDFDocument_checkHeader() {
var stream = this.stream;
stream.reset();
if (find(stream, '%PDF-', 1024)) {
// Found the header, trim off any garbage before it.
stream.moveStart();
return;
}
// May not be a PDF file, continue anyway.
},
setup: function PDFDocument_setup(password) {
this.checkHeader();
var xref = new XRef(this.stream,
this.startXRef,
this.mainXRefEntriesOffset,
password);
this.xref = xref;
this.catalog = new Catalog(xref);
},
get numPages() {
var linearization = this.linearization;
var num = linearization ? linearization.numPages : this.catalog.numPages;
// shadow the prototype getter
return shadow(this, 'numPages', num);
},
getDocumentInfo: function PDFDocument_getDocumentInfo() {
var docInfo = {
IsAcroFormPresent: !!this.acroForm
};
if (this.xref.trailer.has('Info')) {
var infoDict = this.xref.trailer.get('Info');
var validEntries = DocumentInfoValidators.entries;
// Only fill the document info with valid entries from the spec.
for (var key in validEntries) {
if (infoDict.has(key)) {
var value = infoDict.get(key);
// Make sure the value conforms to the spec.
if (validEntries[key](value)) {
docInfo[key] = typeof value !== 'string' ? value :
stringToPDFString(value);
} else {
info('Bad value in document info for "' + key + '"');
}
}
}
}
return shadow(this, 'getDocumentInfo', docInfo);
},
getFingerprint: function PDFDocument_getFingerprint() {
var xref = this.xref, fileID;
if (xref.trailer.has('ID')) {
fileID = '';
var id = xref.trailer.get('ID')[0];
id.split('').forEach(function(el) {
fileID += Number(el.charCodeAt(0)).toString(16);
});
} else {
// If we got no fileID, then we generate one,
// from the first 100 bytes of PDF
var data = this.stream.bytes.subarray(0, 100);
var hash = calculateMD5(data, 0, data.length);
fileID = '';
for (var i = 0, length = hash.length; i < length; i++) {
fileID += Number(hash[i]).toString(16);
}
}
return shadow(this, 'getFingerprint', fileID);
},
getPage: function PDFDocument_getPage(n) {
return this.catalog.getPage(n);
}
};
return PDFDocument;
})();
// Use only for debugging purposes. This should not be used in any code that is
// in mozilla master.
var log = (function() {
if ('console' in globalScope && 'log' in globalScope['console']) {
return globalScope['console']['log'].bind(globalScope['console']);
} else {
return function nop() {
};
}
})();
// A notice for devs that will not trigger the fallback UI. These are good
// for things that are helpful to devs, such as warning that Workers were
// disabled, which is important to devs but not end users.
function info(msg) {
if (verbosity >= INFOS) {
log('Info: ' + msg);
PDFJS.LogManager.notify('info', msg);
}
}
// Non-fatal warnings that should trigger the fallback UI.
function warn(msg) {
if (verbosity >= WARNINGS) {
log('Warning: ' + msg);
PDFJS.LogManager.notify('warn', msg);
}
}
// Fatal errors that should trigger the fallback UI and halt execution by
// throwing an exception.
function error(msg) {
// If multiple arguments were passed, pass them all to the log function.
if (arguments.length > 1) {
var logArguments = ['Error:'];
logArguments.push.apply(logArguments, arguments);
log.apply(null, logArguments);
// Join the arguments into a single string for the lines below.
msg = [].join.call(arguments, ' ');
} else {
log('Error: ' + msg);
}
log(backtrace());
PDFJS.LogManager.notify('error', msg);
throw new Error(msg);
}
// Missing features that should trigger the fallback UI.
function TODO(what) {
warn('TODO: ' + what);
}
function backtrace() {
try {
throw new Error();
} catch (e) {
return e.stack ? e.stack.split('\n').slice(2).join('\n') : '';
}
}
function assert(cond, msg) {
if (!cond)
error(msg);
}
// Combines two URLs. The baseUrl shall be absolute URL. If the url is an
// absolute URL, it will be returned as is.
return PasswordException;
})();
var UnknownErrorException = (function UnknownErrorExceptionClosure() {
function UnknownErrorException(msg, details) {
this.name = 'UnknownErrorException';
this.message = msg;
this.details = details;
}
UnknownErrorException.prototype = new Error();
UnknownErrorException.constructor = UnknownErrorException;
return UnknownErrorException;
})();
var InvalidPDFException = (function InvalidPDFExceptionClosure() {
function InvalidPDFException(msg) {
this.name = 'InvalidPDFException';
this.message = msg;
}
InvalidPDFException.prototype = new Error();
InvalidPDFException.constructor = InvalidPDFException;
return InvalidPDFException;
})();
function bytesToString(bytes) {
var str = '';
var length = bytes.length;
for (var n = 0; n < length; ++n)
str += String.fromCharCode(bytes[n]);
return str;
}
function stringToBytes(str) {
var length = str.length;
var bytes = new Uint8Array(length);
for (var n = 0; n < length; ++n)
bytes[n] = str.charCodeAt(n) & 0xFF;
return bytes;
}
var IDENTITY_MATRIX = [1, 0, 0, 1, 0, 0];
var Util = PDFJS.Util = (function UtilClosure() {
function Util() {}
Util.makeCssRgb = function Util_makeCssRgb(r, g, b) {
var ri = (255 * r) | 0, gi = (255 * g) | 0, bi = (255 * b) | 0;
return 'rgb(' + ri + ',' + gi + ',' + bi + ')';
};
Util.makeCssCmyk = function Util_makeCssCmyk(c, m, y, k) {
c = (new DeviceCmykCS()).getRgb([c, m, y, k]);
var ri = (255 * c[0]) | 0, gi = (255 * c[1]) | 0, bi = (255 * c[2]) | 0;
return 'rgb(' + ri + ',' + gi + ',' + bi + ')';
};
default:
rotateA = 1; rotateB = 0; rotateC = 0; rotateD = -1;
break;
}
var offsetCanvasX, offsetCanvasY;
var width, height;
if (rotateA == 0) {
offsetCanvasX = Math.abs(centerY - viewBox[1]) * scale + offsetX;
offsetCanvasY = Math.abs(centerX - viewBox[0]) * scale + offsetY;
width = Math.abs(viewBox[3] - viewBox[1]) * scale;
height = Math.abs(viewBox[2] - viewBox[0]) * scale;
} else {
offsetCanvasX = Math.abs(centerX - viewBox[0]) * scale + offsetX;
offsetCanvasY = Math.abs(centerY - viewBox[1]) * scale + offsetY;
width = Math.abs(viewBox[2] - viewBox[0]) * scale;
height = Math.abs(viewBox[3] - viewBox[1]) * scale;
}
// creating transform for the following operations:
// translate(-centerX, -centerY), rotate and flip vertically,
// scale, and translate(offsetCanvasX, offsetCanvasY)
this.transform = [
rotateA * scale,
rotateB * scale,
rotateC * scale,
rotateD * scale,
offsetCanvasX - rotateA * scale * centerX - rotateC * scale * centerY,
offsetCanvasY - rotateB * scale * centerX - rotateD * scale * centerY
];
this.offsetX = offsetX;
this.offsetY = offsetY;
this.width = width;
this.height = height;
this.fontScale = scale;
}
PageViewport.prototype = {
convertToViewportPoint: function PageViewport_convertToViewportPoint(x, y) {
return Util.applyTransform([x, y], this.transform);
},
convertToViewportRectangle:
function PageViewport_convertToViewportRectangle(rect) {
var tl = Util.applyTransform([rect[0], rect[1]], this.transform);
var br = Util.applyTransform([rect[2], rect[3]], this.transform);
return [tl[0], tl[1], br[0], br[1]];
},
convertToPdfPoint: function PageViewport_convertToPdfPoint(x, y) {
return Util.applyInverseTransform([x, y], this.transform);
}
};
return PageViewport;
})();
var PDFStringTranslateTable = [
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0x2D8, 0x2C7, 0x2C6, 0x2D9, 0x2DD, 0x2DB, 0x2DA, 0x2DC, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x2022, 0x2020, 0x2021, 0x2026, 0x2014,
0x2013, 0x192, 0x2044, 0x2039, 0x203A, 0x2212, 0x2030, 0x201E, 0x201C,
0x201D, 0x2018, 0x2019, 0x201A, 0x2122, 0xFB01, 0xFB02, 0x141, 0x152, 0x160,
0x178, 0x17D, 0x131, 0x142, 0x153, 0x161, 0x17E, 0, 0x20AC
];
function stringToPDFString(str) {
var i, n = str.length, str2 = '';
if (str[0] === '\xFE' && str[1] === '\xFF') {
// UTF16BE BOM
for (i = 2; i < n; i += 2)
str2 += String.fromCharCode(
(str.charCodeAt(i) << 8) | str.charCodeAt(i + 1));
} else {
for (i = 0; i < n; ++i) {
var code = PDFStringTranslateTable[str.charCodeAt(i)];
str2 += code ? String.fromCharCode(code) : str.charAt(i);
}
}
return str2;
}
function stringToUTF8String(str) {
return decodeURIComponent(escape(str));
}
function isBool(v) {
return typeof v == 'boolean';
}
function isInt(v) {
return typeof v == 'number' && ((v | 0) == v);
}
function isNum(v) {
return typeof v == 'number';
}
function isString(v) {
return typeof v == 'string';
}
function isNull(v) {
return v === null;
}
function isName(v) {
return v instanceof Name;
}
function isCmd(v, cmd) {
return v instanceof Cmd && (!cmd || v.cmd == cmd);
}
function isDict(v, type) {
return v instanceof Dict && (!type || v.get('Type').name == type);
}
function isArray(v) {
return v instanceof Array;
}
function isStream(v) {
return typeof v == 'object' && v != null && ('getChar' in v);
}
function isArrayBuffer(v) {
return typeof v == 'object' && v != null && ('byteLength' in v);
}
function isRef(v) {
return v instanceof Ref;
}
function isPDFFunction(v) {
var fnDict;
if (typeof v != 'object')
return false;
else if (isDict(v))
fnDict = v;
else if (isStream(v))
fnDict = v.dict;
else
return false;
return fnDict.has('FunctionType');
}
/**
* 'Promise' object.
* Each object that is stored in PDFObjects is based on a Promise object that
* contains the status of the object and the data. There migth be situations,
* where a function want to use the value of an object, but it isn't ready at
* that time. To get a notification, once the object is ready to be used, s.o.
* can add a callback using the `then` method on the promise that then calls
* the callback once the object gets resolved.
* A promise can get resolved only once and only once the data of the promise
* can be set. If any of these happens twice or the data is required before
* it was set, an exception is throw.
*/
var Promise = PDFJS.Promise = (function PromiseClosure() {
var EMPTY_PROMISE = {};
/**
* If `data` is passed in this constructor, the promise is created resolved.
* If there isn't data, it isn't resolved at the beginning.
*/
function Promise(name, data) {
this.name = name;
this.isRejected = false;
this.error = null;
// If you build a promise and pass in some data it's already resolved.
if (data != null) {
this.isResolved = true;
this._data = data;
this.hasData = true;
} else {
this.isResolved = false;
this._data = EMPTY_PROMISE;
}
this.callbacks = [];
this.errbacks = [];
this.progressbacks = [];
};
/**
* Builds a promise that is resolved when all the passed in promises are
* resolved.
* @param {Promise[]} promises Array of promises to wait for.
* @return {Promise} New dependant promise.
*/
Promise.all = function Promise_all(promises) {
var deferred = new Promise();
var unresolved = promises.length;
var results = [];
if (unresolved === 0) {
deferred.resolve(results);
return deferred;
}
for (var i = 0, ii = promises.length; i < ii; ++i) {
var promise = promises[i];
promise.then((function(i) {
return function(value) {
results[i] = value;
unresolved--;
if (unresolved === 0)
deferred.resolve(results);
};
})(i));
}
return deferred;
};
Promise.prototype = {
hasData: false,
set data(value) {
if (value === undefined) {
return;
}
if (this._data !== EMPTY_PROMISE) {
error('Promise ' + this.name +
': Cannot set the data of a promise twice');
}
this._data = value;
this.hasData = true;
if (this.onDataCallback) {
this.onDataCallback(value);
}
},
get data() {
if (this._data === EMPTY_PROMISE) {
error('Promise ' + this.name + ': Cannot get data that isn\'t set');
}
return this._data;
},
onData: function Promise_onData(callback) {
if (this._data !== EMPTY_PROMISE) {
callback(this._data);
} else {
this.onDataCallback = callback;
}
},
resolve: function Promise_resolve(data) {
if (this.isResolved) {
error('A Promise can be resolved only once ' + this.name);
}
if (this.isRejected) {
error('The Promise was already rejected ' + this.name);
}
this.isResolved = true;
this.data = (typeof data !== 'undefined') ? data : null;
var callbacks = this.callbacks;
for (var i = 0, ii = callbacks.length; i < ii; i++) {
callbacks[i].call(null, data);
}
},
progress: function Promise_progress(data) {
var callbacks = this.progressbacks;
for (var i = 0, ii = callbacks.length; i < ii; i++) {
callbacks[i].call(null, data);
}
},
reject: function Promise_reject(reason, exception) {
if (this.isRejected) {
error('A Promise can be rejected only once ' + this.name);
}
if (this.isResolved) {
error('The Promise was already resolved ' + this.name);
}
this.isRejected = true;
this.error = reason || null;
var errbacks = this.errbacks;
for (var i = 0, ii = errbacks.length; i < ii; i++) {
errbacks[i].call(null, reason, exception);
}
},
then: function Promise_then(callback, errback, progressback) {
if (!callback) {
error('Requiring callback' + this.name);
}
// If the promise is already resolved, call the callback directly.
if (this.isResolved) {
var data = this.data;
callback.call(null, data);
} else if (this.isRejected && errback) {
var error = this.error;
errback.call(null, error);
} else {
this.callbacks.push(callback);
if (errback)
this.errbacks.push(errback);
}
if (progressback)
this.progressbacks.push(progressback);
}
};
return Promise;
})();
var StatTimer = (function StatTimerClosure() {
function rpad(str, pad, length) {
while (str.length < length)
str += pad;
return str;
}
function StatTimer() {
this.started = {};
this.times = [];
this.enabled = true;
}
StatTimer.prototype = {
time: function StatTimer_time(name) {
if (!this.enabled)
return;
if (name in this.started)
throw 'Timer is already running for ' + name;
this.started[name] = Date.now();
},
timeEnd: function StatTimer_timeEnd(name) {
if (!this.enabled)
return;
if (!(name in this.started))
throw 'Timer has not been started for ' + name;
this.times.push({
'name': name,
'start': this.started[name],
'end': Date.now()
});
// Remove timer from started so it can be called again.
delete this.started[name];
},
toString: function StatTimer_toString() {
var times = this.times;
var out = '';
// Find the longest name for padding purposes.
var longest = 0;
for (var i = 0, ii = times.length; i < ii; ++i) {
var name = times[i]['name'];
if (name.length > longest)
longest = name.length;
}
for (var i = 0, ii = times.length; i < ii; ++i) {
var span = times[i];
var duration = span.end - span.start;
out += rpad(span['name'], ' ', longest) + ' ' + duration + 'ms\n';
}
return out;
}
};
return StatTimer;
})();
PDFJS.createBlob = function createBlob(data, contentType) {
if (typeof Blob === 'function')
return new Blob([data], { type: contentType });
// Blob builder is deprecated in FF14 and removed in FF18.
var bb = new MozBlobBuilder();
bb.append(data);
return bb.getBlob(contentType);
};
/**
* This is the main entry point for loading a PDF and interacting with it.
* NOTE: If a URL is used to fetch the PDF data a standard XMLHttpRequest(XHR)
* is used, which means it must follow the same origin rules that any XHR does
* e.g. No cross domain requests without CORS.
*
* @param {string|TypedAray|object} source Can be an url to where a PDF is
* located, a typed array (Uint8Array) already populated with data or
* and parameter object with the following possible fields:
* - url - The URL of the PDF.
* - data - A typed array with PDF data.
* - httpHeaders - Basic authentication headers.
* - password - For decrypting password-protected PDFs.
*
* @return {Promise} A promise that is resolved with {PDFDocumentProxy} object.
*/
PDFJS.getDocument = function getDocument(source) {
var workerInitializedPromise, workerReadyPromise, transport;
if (typeof source === 'string') {
source = { url: source };
} else if (isArrayBuffer(source)) {
source = { data: source };
} else if (typeof source !== 'object') {
error('Invalid parameter in getDocument, need either Uint8Array, ' +
'string or a parameter object');
}
if (!source.url && !source.data)
error('Invalid parameter array, need either .data or .url');
// copy/use all keys as is except 'url' -- full path is required
var params = {};
for (var key in source) {
if (key === 'url' && typeof window !== 'undefined') {
params[key] = combineUrl(window.location.href, source[key]);
continue;
}
params[key] = source[key];
}
workerInitializedPromise = new PDFJS.Promise();
workerReadyPromise = new PDFJS.Promise();
transport = new WorkerTransport(workerInitializedPromise, workerReadyPromise);
workerInitializedPromise.then(function transportInitialized() {
transport.fetchDocument(params);
});
return workerReadyPromise;
};
/**
* Proxy to a PDFDocument in the worker thread. Also, contains commonly used
* properties that can be read synchronously.
*/
var PDFDocumentProxy = (function PDFDocumentProxyClosure() {
function PDFDocumentProxy(pdfInfo, transport) {
this.pdfInfo = pdfInfo;
this.transport = transport;
}
PDFDocumentProxy.prototype = {
/**
* @return {number} Total number of pages the PDF contains.
*/
get numPages() {
return this.pdfInfo.numPages;
},
/**
* @return {string} A unique ID to identify a PDF. Not guaranteed to be
* unique.
*/
get fingerprint() {
return this.pdfInfo.fingerprint;
},
/**
* @param {number} The page number to get. The first page is 1.
* @return {Promise} A promise that is resolved with a {PDFPageProxy}
* object.
*/
getPage: function PDFDocumentProxy_getPage(number) {
return this.transport.getPage(number);
},
/**
* @return {Promise} A promise that is resolved with a lookup table for
* mapping named destinations to reference numbers.
*/
getDestinations: function PDFDocumentProxy_getDestinations() {
var promise = new PDFJS.Promise();
var destinations = this.pdfInfo.destinations;
promise.resolve(destinations);
return promise;
},
/**
* @return {Promise} A promise that is resolved with an {array} that is a
* tree outline (if it has one) of the PDF. The tree is in the format of:
* [
* {
* title: string,
* bold: boolean,
* italic: boolean,
* color: rgb array,
* dest: dest obj,
* items: array of more items like this
* },
* ...
* ].
*/
getOutline: function PDFDocumentProxy_getOutline() {
var promise = new PDFJS.Promise();
this.renderInProgress = true;
var promise = new Promise();
var stats = this.stats;
stats.time('Overall');
// If there is no displayReadyPromise yet, then the operatorList was never
// requested before. Make the request and create the promise.
if (!this.displayReadyPromise) {
this.displayReadyPromise = new Promise();
this.destroyed = false;
this.stats.time('Page Request');
this.transport.messageHandler.send('RenderPageRequest', {
pageIndex: this.pageNumber - 1
});
}
var self = this;
function complete(error) {
self.renderInProgress = false;
if (self.destroyed || self.cleanupAfterRender) {
delete self.displayReadyPromise;
delete self.operatorList;
self.objs.clear();
}
if (error)
promise.reject(error);
else
promise.resolve();
};
var continueCallback = params.continueCallback;
// Once the operatorList and fonts are loaded, do the actual rendering.
this.displayReadyPromise.then(
function pageDisplayReadyPromise() {
if (self.destroyed) {
complete();
return;
}
var gfx = new CanvasGraphics(params.canvasContext, this.commonObjs,
this.objs, params.textLayer);
try {
this.display(gfx, params.viewport, complete, continueCallback);
} catch (e) {
complete(e);
}
}.bind(this),
function pageDisplayReadPromiseError(reason) {
complete(reason);
}
);
return promise;
},
/**
* For internal use only.
*/
startRenderingFromOperatorList:
function PDFPageProxy_startRenderingFromOperatorList(operatorList,
fonts) {
var self = this;
this.operatorList = operatorList;
var displayContinuation = function pageDisplayContinuation() {
// Always defer call to display() to work around bug in
// Firefox error reporting from XHR callbacks.
setTimeout(function pageSetTimeout() {
self.displayReadyPromise.resolve();
});
};
this.ensureFonts(fonts,
function pageStartRenderingFromOperatorListEnsureFonts() {
displayContinuation();
}
);
},
/**
* For internal use only.
*/
ensureFonts: function PDFPageProxy_ensureFonts(fonts, callback) {
this.stats.time('Font Loading');
// Convert the font names to the corresponding font obj.
var fontObjs = [];
for (var i = 0, ii = fonts.length; i < ii; i++) {
var obj = this.commonObjs.getData(fonts[i]);
if (obj.error) {
warn('Error during font loading: ' + obj.error);
continue;
}
fontObjs.push(obj);
}
// Load all the fonts
FontLoader.bind(
fontObjs,
function pageEnsureFontsFontObjs(fontObjs) {
this.stats.timeEnd('Font Loading');
callback.call(this);
}.bind(this)
);
},
/**
* For internal use only.
*/
display: function PDFPageProxy_display(gfx, viewport, callback,
continueCallback) {
var stats = this.stats;
stats.time('Rendering');
gfx.beginDrawing(viewport);
var startIdx = 0;
var length = this.operatorList.fnArray.length;
var operatorList = this.operatorList;
var stepper = null;
if (PDFJS.pdfBug && 'StepperManager' in globalScope &&
globalScope['StepperManager'].enabled) {
stepper = globalScope['StepperManager'].create(this.pageNumber - 1);
stepper.init(operatorList);
stepper.nextBreakPoint = stepper.getNextBreakPoint();
}
var continueWrapper;
if (continueCallback)
continueWrapper = function() { continueCallback(next); }
else
continueWrapper = next;
var self = this;
function next() {
startIdx = gfx.executeOperatorList(operatorList, startIdx,
continueWrapper, stepper);
if (startIdx == length) {
gfx.endDrawing();
stats.timeEnd('Rendering');
stats.timeEnd('Overall');
if (callback) callback();
}
}
continueWrapper();
},
/**
* @return {Promise} That is resolved with the a {string} that is the text
* content from the page.
*/
getTextContent: function PDFPageProxy_getTextContent() {
var promise = new PDFJS.Promise();
this.transport.messageHandler.send('GetTextContent', {
pageIndex: this.pageNumber - 1
},
function textContentCallback(textContent) {
promise.resolve(textContent);
}
);
return promise;
},
/**
* Stub for future feature.
*/
getOperationList: function PDFPageProxy_getOperationList() {
var promise = new PDFJS.Promise();
var operationList = { // not implemented
dependencyFontsID: null,
operatorList: null
};
promise.resolve(operationList);
return promise;
},
/**
* Destroys resources allocated by the page.
*/
destroy: function PDFPageProxy_destroy() {
this.destroyed = true;
if (!this.renderInProgress) {
delete this.operatorList;
delete this.displayReadyPromise;
this.objs.clear();
}
}
};
return PDFPageProxy;
})();
/**
* For internal use only.
*/
var WorkerTransport = (function WorkerTransportClosure() {
function WorkerTransport(workerInitializedPromise, workerReadyPromise) {
this.workerReadyPromise = workerReadyPromise;
this.commonObjs = new PDFObjects();
this.pageCache = [];
this.pagePromises = [];
this.fontsLoading = {};
//
//
//
//
//
if
If worker support isn't disabled explicit and the browser has worker
support, create a new web worker and test if it/the browser fullfills
all requirements to run parts of pdf.js in a web worker.
Right now, the requirement is, that an Uint8Array is still an Uint8Array
as it arrives on the worker. Chrome added this with version 15.
(!globalScope.PDFJS.disableWorker && typeof Worker !== 'undefined') {
var workerSrc = PDFJS.workerSrc;
if (typeof workerSrc === 'undefined') {
error('No PDFJS.workerSrc specified');
}
try {
// Some versions of FF can't create a worker on localhost, see:
// https://bugzilla.mozilla.org/show_bug.cgi?id=683280
var worker = new Worker(workerSrc);
var messageHandler = new MessageHandler('main', worker);
this.messageHandler = messageHandler;
messageHandler.on('test', function transportTest(supportTypedArray) {
if (supportTypedArray) {
this.worker = worker;
this.setupMessageHandler(messageHandler);
} else {
globalScope.PDFJS.disableWorker = true;
this.setupFakeWorker();
}
workerInitializedPromise.resolve();
}.bind(this));
var testObj = new Uint8Array(1);
// Some versions of Opera throw a DATA_CLONE_ERR on
// serializing the typed array.
messageHandler.send('test', testObj);
return;
} catch (e) {
info('The worker has been disabled.');
}
}
// Either workers are disabled, not supported or have thrown an exception.
// Thus, we fallback to a faked worker.
globalScope.PDFJS.disableWorker = true;
this.setupFakeWorker();
workerInitializedPromise.resolve();
}
WorkerTransport.prototype = {
destroy: function WorkerTransport_destroy() {
if (this.worker)
this.worker.terminate();
this.pageCache = [];
this.pagePromises = [];
},
setupFakeWorker: function WorkerTransport_setupFakeWorker() {
warn('Setting up fake worker.');
// If we don't use a worker, just post/sendMessage to the main thread.
var fakeWorker = {
postMessage: function WorkerTransport_postMessage(obj) {
fakeWorker.onmessage({data: obj});
},
terminate: function WorkerTransport_terminate() {}
};
var messageHandler = new MessageHandler('main', fakeWorker);
this.setupMessageHandler(messageHandler);
// If the main thread is our worker, setup the handling for the messages
// the main thread sends to it self.
WorkerMessageHandler.setup(messageHandler);
},
setupMessageHandler:
function WorkerTransport_setupMessageHandler(messageHandler) {
this.messageHandler = messageHandler;
messageHandler.on('GetDoc', function transportDoc(data) {
var pdfInfo = data.pdfInfo;
var pdfDocument = new PDFDocumentProxy(pdfInfo, this);
this.pdfDocument = pdfDocument;
this.workerReadyPromise.resolve(pdfDocument);
}, this);
messageHandler.on('NeedPassword', function transportPassword(data) {
this.workerReadyPromise.reject(data.exception.message, data.exception);
}, this);
messageHandler.on('IncorrectPassword', function transportBadPass(data) {
this.workerReadyPromise.reject(data.exception.message, data.exception);
}, this);
messageHandler.on('InvalidPDF', function transportInvalidPDF(data) {
this.workerReadyPromise.reject(data.exception.name, data.exception);
}, this);
messageHandler.on('UnknownError', function transportUnknownError(data) {
this.workerReadyPromise.reject(data.exception.message, data.exception);
}, this);
messageHandler.on('GetPage', function transportPage(data) {
var pageInfo = data.pageInfo;
var page = new PDFPageProxy(pageInfo, this);
this.pageCache[pageInfo.pageIndex] = page;
}).bind(this);
var src = 'data:image/jpeg;base64,' + window.btoa(imageData);
img.src = src;
});
},
fetchDocument: function WorkerTransport_fetchDocument(source) {
this.messageHandler.send('GetDocRequest', {source: source});
},
getData: function WorkerTransport_getData(promise) {
this.messageHandler.send('GetData', null, function(data) {
promise.resolve(data);
});
},
getPage: function WorkerTransport_getPage(pageNumber, promise) {
var pageIndex = pageNumber - 1;
if (pageIndex in this.pagePromises)
return this.pagePromises[pageIndex];
var promise = new PDFJS.Promise('Page ' + pageNumber);
this.pagePromises[pageIndex] = promise;
this.messageHandler.send('GetPageRequest', { pageIndex: pageIndex });
return promise;
},
getAnnotations: function WorkerTransport_getAnnotations(pageIndex) {
this.messageHandler.send('GetAnnotationsRequest',
{ pageIndex: pageIndex });
}
};
return WorkerTransport;
})();
// <canvas> contexts store most of the state we need natively.
// However, PDF needs a bit more state, which we store here.
var TextRenderingMode = {
FILL: 0,
STROKE: 1,
FILL_STROKE: 2,
INVISIBLE: 3,
FILL_ADD_TO_PATH: 4,
STROKE_ADD_TO_PATH: 5,
FILL_STROKE_ADD_TO_PATH: 6,
ADD_TO_PATH: 7,
ADD_TO_PATH_FLAG: 4
};
// Minimal font size that would be used during canvas fillText operations.
var MIN_FONT_SIZE = 1;
function createScratchCanvas(width, height) {
var canvas = document.createElement('canvas');
canvas.width = width;
canvas.height = height;
return canvas;
}
function addContextCurrentTransform(ctx) {
// If the context doesn't expose a `mozCurrentTransform`, add a JS based on.
if (!ctx.mozCurrentTransform) {
// Store the original context
ctx._originalSave = ctx.save;
ctx._originalRestore = ctx.restore;
ctx._originalRotate = ctx.rotate;
ctx._originalScale = ctx.scale;
ctx._originalTranslate = ctx.translate;
ctx._originalTransform = ctx.transform;
ctx._transformMatrix = [1, 0, 0, 1, 0, 0];
ctx._transformStack = [];
Object.defineProperty(ctx, 'mozCurrentTransform', {
get: function getCurrentTransform() {
return this._transformMatrix;
}
});
Object.defineProperty(ctx, 'mozCurrentTransformInverse', {
get: function getCurrentTransformInverse() {
// Calculation done using WolframAlpha:
// http://www.wolframalpha.com/input/?
// i=Inverse+{{a%2C+c%2C+e}%2C+{b%2C+d%2C+f}%2C+{0%2C+0%2C+1}}
var m = this._transformMatrix;
var a = m[0], b = m[1], c = m[2], d = m[3], e = m[4], f = m[5];
var ad_bc = a * d - b * c;
var bc_ad = b * c - a * d;
return [
d / ad_bc,
b / bc_ad,
c / bc_ad,
a / ad_bc,
(d * e - c * f) / bc_ad,
(b * e - a * f) / ad_bc
];
}
});
ctx.save = function ctxSave() {
var old = this._transformMatrix;
this._transformStack.push(old);
this._transformMatrix = old.slice(0, 6);
this._originalSave();
};
ctx.restore = function ctxRestore() {
var prev = this._transformStack.pop();
if (prev) {
this._transformMatrix = prev;
this._originalRestore();
}
};
}
}
var
var
var
var
CanvasGraphics.prototype = {
slowCommands: {
'stroke': true,
'closeStroke': true,
'fill': true,
'eoFill': true,
'fillStroke': true,
'eoFillStroke': true,
'closeFillStroke': true,
'closeEOFillStroke': true,
'showText': true,
'showSpacedText': true,
'setStrokeColorSpace': true,
'setFillColorSpace': true,
'setStrokeColor': true,
'setStrokeColorN': true,
'setFillColor': true,
'setFillColorN': true,
'setStrokeGray': true,
'setFillGray': true,
'setStrokeRGBColor': true,
'setFillRGBColor': true,
'setStrokeCMYKColor': true,
'setFillCMYKColor': true,
'paintJpegXObject': true,
'paintImageXObject': true,
'paintImageMaskXObject': true,
'shadingFill': true
},
beginDrawing: function CanvasGraphics_beginDrawing(viewport) {
var transform = viewport.transform;
this.ctx.save();
this.ctx.transform.apply(this.ctx, transform);
if (this.textLayer)
this.textLayer.beginLayout();
},
executeOperatorList: function CanvasGraphics_executeOperatorList(
operatorList,
executionStartIdx, continueCallback,
stepper) {
var argsArray = operatorList.argsArray;
var fnArray = operatorList.fnArray;
var i = executionStartIdx || 0;
var argsArrayLen = argsArray.length;
// Sometimes the OperatorList to execute is empty.
if (argsArrayLen == i) {
return i;
}
var executionEndIdx;
var endTime = Date.now() + EXECUTION_TIME;
var
var
var
var
commonObjs = this.commonObjs;
objs = this.objs;
fnName;
slowCommands = this.slowCommands;
while (true) {
if (stepper && i === stepper.nextBreakPoint) {
stepper.breakIt(i, continueCallback);
return i;
}
fnName = fnArray[i];
if (fnName !== 'dependency') {
this[fnName].apply(this, argsArray[i]);
} else {
var deps = argsArray[i];
for (var n = 0, nn = deps.length; n < nn; n++) {
var depObjId = deps[n];
var common = depObjId.substring(0, 2) == 'g_';
// If the promise isn't resolved yet, add the continueCallback
// to the promise and bail out.
if (!common && !objs.isResolved(depObjId)) {
objs.get(depObjId, continueCallback);
return i;
}
if (common && !commonObjs.isResolved(depObjId)) {
commonObjs.get(depObjId, continueCallback);
return i;
}
}
}
i++;
// If the entire operatorList was executed, stop as were done.
if (i == argsArrayLen) {
return i;
}
//
//
//
if
}
// If the operatorList isn't executed completely yet OR the execution
// time was short enough, do another execution round.
}
},
endDrawing: function CanvasGraphics_endDrawing() {
this.ctx.restore();
if (this.textLayer)
this.textLayer.endLayout();
},
// Graphics state
setLineWidth: function CanvasGraphics_setLineWidth(width) {
this.current.lineWidth = width;
this.ctx.lineWidth = width;
},
setLineCap: function CanvasGraphics_setLineCap(style) {
this.ctx.lineCap = LINE_CAP_STYLES[style];
},
setLineJoin: function CanvasGraphics_setLineJoin(style) {
this.ctx.lineJoin = LINE_JOIN_STYLES[style];
},
setMiterLimit: function CanvasGraphics_setMiterLimit(limit) {
this.ctx.miterLimit = limit;
},
setDash: function CanvasGraphics_setDash(dashArray, dashPhase) {
this.ctx.mozDash = dashArray;
this.ctx.mozDashOffset = dashPhase;
this.ctx.webkitLineDash = dashArray;
this.ctx.webkitLineDashOffset = dashPhase;
},
setRenderingIntent: function CanvasGraphics_setRenderingIntent(intent) {
// Maybe if we one day fully support color spaces this will be important
// for now we can ignore.
// TODO set rendering intent?
},
setFlatness: function CanvasGraphics_setFlatness(flatness) {
// There's no way to control this with canvas, but we can safely ignore.
// TODO set flatness?
},
setGState: function CanvasGraphics_setGState(states) {
for (var i = 0, ii = states.length; i < ii; i++) {
var state = states[i];
var key = state[0];
var value = state[1];
switch (key) {
case 'LW':
this.setLineWidth(value);
break;
case 'LC':
this.setLineCap(value);
break;
case 'LJ':
this.setLineJoin(value);
break;
case 'ML':
this.setMiterLimit(value);
break;
case 'D':
this.setDash(value[0], value[1]);
break;
case 'RI':
this.setRenderingIntent(value);
break;
case 'FL':
this.setFlatness(value);
break;
case 'Font':
this.setFont(state[1], state[2]);
break;
case 'CA':
this.current.strokeAlpha = state[1];
break;
case 'ca':
this.current.fillAlpha = state[1];
this.ctx.globalAlpha = state[1];
break;
}
}
},
save: function CanvasGraphics_save() {
this.ctx.save();
var old = this.current;
this.stateStack.push(old);
this.current = old.clone();
},
restore: function CanvasGraphics_restore() {
if ('textClipLayers' in this) {
this.completeTextClipping();
}
var prev = this.stateStack.pop();
if (prev) {
this.current = prev;
this.ctx.restore();
}
},
transform: function CanvasGraphics_transform(a, b, c, d, e, f) {
this.ctx.transform(a, b, c, d, e, f);
},
// Path
moveTo: function CanvasGraphics_moveTo(x, y) {
this.ctx.moveTo(x, y);
this.current.setCurrentPoint(x, y);
},
lineTo: function CanvasGraphics_lineTo(x, y) {
this.ctx.lineTo(x, y);
this.current.setCurrentPoint(x, y);
},
curveTo: function CanvasGraphics_curveTo(x1, y1, x2, y2, x3, y3) {
this.ctx.bezierCurveTo(x1, y1, x2, y2, x3, y3);
this.current.setCurrentPoint(x3, y3);
},
curveTo2: function CanvasGraphics_curveTo2(x2, y2, x3, y3) {
var current = this.current;
this.ctx.bezierCurveTo(current.x, current.y, x2, y2, x3, y3);
current.setCurrentPoint(x3, y3);
},
curveTo3: function CanvasGraphics_curveTo3(x1, y1, x3, y3) {
this.curveTo(x1, y1, x3, y3, x3, y3);
this.current.setCurrentPoint(x3, y3);
},
closePath: function CanvasGraphics_closePath() {
this.ctx.closePath();
},
rectangle: function CanvasGraphics_rectangle(x, y, width, height) {
this.ctx.rect(x, y, width, height);
},
stroke: function CanvasGraphics_stroke(consumePath) {
consumePath = typeof consumePath !== 'undefined' ? consumePath : true;
var ctx = this.ctx;
var strokeColor = this.current.strokeColor;
if (this.current.lineWidth === 0)
ctx.lineWidth = this.getSinglePixelWidth();
// For stroke we want to temporarily change the global alpha to the
// stroking alpha.
ctx.globalAlpha = this.current.strokeAlpha;
if (strokeColor && strokeColor.hasOwnProperty('type') &&
strokeColor.type === 'Pattern') {
// for patterns, we transform to pattern space, calculate
// the pattern, call stroke, and restore to user space
ctx.save();
ctx.strokeStyle = strokeColor.getPattern(ctx);
ctx.stroke();
ctx.restore();
} else {
ctx.stroke();
}
if (consumePath)
this.consumePath();
// Restore the global alpha to the fill alpha
ctx.globalAlpha = this.current.fillAlpha;
},
closeStroke: function CanvasGraphics_closeStroke() {
this.closePath();
this.stroke();
},
fill: function CanvasGraphics_fill(consumePath) {
consumePath = typeof consumePath !== 'undefined' ? consumePath : true;
var ctx = this.ctx;
var fillColor = this.current.fillColor;
if (fillColor && fillColor.hasOwnProperty('type') &&
fillColor.type === 'Pattern') {
ctx.save();
ctx.fillStyle = fillColor.getPattern(ctx);
ctx.fill();
ctx.restore();
} else {
ctx.fill();
}
if (consumePath)
this.consumePath();
},
eoFill: function CanvasGraphics_eoFill() {
var savedFillRule = this.setEOFillRule();
this.fill();
this.restoreFillRule(savedFillRule);
},
fillStroke: function CanvasGraphics_fillStroke() {
this.fill(false);
this.stroke(false);
this.consumePath();
},
eoFillStroke: function CanvasGraphics_eoFillStroke() {
var savedFillRule = this.setEOFillRule();
this.fillStroke();
this.restoreFillRule(savedFillRule);
},
closeFillStroke: function CanvasGraphics_closeFillStroke() {
this.closePath();
this.fillStroke();
},
closeEOFillStroke: function CanvasGraphics_closeEOFillStroke() {
var savedFillRule = this.setEOFillRule();
this.closePath();
this.fillStroke();
this.restoreFillRule(savedFillRule);
},
endPath: function CanvasGraphics_endPath() {
this.consumePath();
},
// Clipping
clip: function CanvasGraphics_clip() {
this.pendingClip = NORMAL_CLIP;
},
eoClip: function CanvasGraphics_eoClip() {
this.pendingClip = EO_CLIP;
},
// Text
beginText: function CanvasGraphics_beginText() {
this.current.textMatrix = IDENTITY_MATRIX;
this.current.x = this.current.lineX = 0;
this.current.y = this.current.lineY = 0;
},
endText: function CanvasGraphics_endText() {
if ('textClipLayers' in this) {
this.swapImageForTextClipping();
}
},
getCurrentTextClipping: function CanvasGraphics_getCurrentTextClipping() {
var ctx = this.ctx;
var transform = ctx.mozCurrentTransform;
if ('textClipLayers' in this) {
// we need to reset only font and transform
var maskCtx = this.textClipLayers.maskCtx;
maskCtx.setTransform.apply(maskCtx, transform);
maskCtx.font = ctx.font;
return maskCtx;
}
var canvasWidth = ctx.canvas.width;
var canvasHeight = ctx.canvas.height;
// keeping track of the text clipping of the separate canvas
var maskCanvas = createScratchCanvas(canvasWidth, canvasHeight);
var maskCtx = maskCanvas.getContext('2d');
maskCtx.setTransform.apply(maskCtx, transform);
maskCtx.font = ctx.font;
var textClipLayers = {
maskCanvas: maskCanvas,
maskCtx: maskCtx
};
this.textClipLayers = textClipLayers;
return maskCtx;
},
swapImageForTextClipping:
function CanvasGraphics_swapImageForTextClipping() {
var ctx = this.ctx;
var canvasWidth = ctx.canvas.width;
var canvasHeight = ctx.canvas.height;
// saving current image content and clearing whole canvas
ctx.save();
ctx.setTransform(1, 0, 0, 1, 0, 0);
var data = ctx.getImageData(0, 0, canvasWidth, canvasHeight);
this.textClipLayers.imageData = data;
ctx.clearRect(0, 0, canvasWidth, canvasHeight);
ctx.restore();
},
completeTextClipping: function CanvasGraphics_completeTextClipping() {
var ctx = this.ctx;
// applying mask to the image (result is saved in maskCanvas)
var maskCtx = this.textClipLayers.maskCtx;
maskCtx.setTransform(1, 0, 0, 1, 0, 0);
maskCtx.globalCompositeOperation = 'source-in';
maskCtx.drawImage(ctx.canvas, 0, 0);
// restoring image data and applying the result of masked drawing
ctx.save();
ctx.setTransform(1, 0, 0, 1, 0, 0);
ctx.putImageData(this.textClipLayers.imageData, 0, 0);
ctx.drawImage(this.textClipLayers.maskCanvas, 0, 0);
ctx.restore();
delete this.textClipLayers;
},
setCharSpacing: function CanvasGraphics_setCharSpacing(spacing) {
this.current.charSpacing = spacing;
},
setWordSpacing: function CanvasGraphics_setWordSpacing(spacing) {
this.current.wordSpacing = spacing;
},
setHScale: function CanvasGraphics_setHScale(scale) {
this.current.textHScale = scale / 100;
},
setLeading: function CanvasGraphics_setLeading(leading) {
this.current.leading = -leading;
},
setFont: function CanvasGraphics_setFont(fontRefName, size) {
var fontObj = this.commonObjs.get(fontRefName);
var current = this.current;
if (!fontObj)
error('Can\'t find font for ' + fontRefName);
// Slice-clone matrix so we can manipulate it without affecting original
if (fontObj.fontMatrix)
current.fontMatrix = fontObj.fontMatrix.slice(0);
else
current.fontMatrix = IDENTITY_MATRIX.slice(0);
// A valid matrix needs all main diagonal elements to be non-zero
The spec for Tf (setFont) says that 'size' specifies the font 'scale',
and in some docs this can be negative (inverted x-y axes).
We implement this condition with fontMatrix.
(size < 0) {
size = -size;
current.fontMatrix[0] *= -1;
current.fontMatrix[3] *= -1;
}
this.current.font = fontObj;
this.current.fontSize = size;
if (fontObj.coded)
return; // we don't need ctx.font for Type3 fonts
var name = fontObj.loadedName || 'sans-serif';
var bold = fontObj.black ? (fontObj.bold ? 'bolder' : 'bold') :
(fontObj.bold ? 'bold' : 'normal');
var italic = fontObj.italic ? 'italic' : 'normal';
var typeface = '"' + name + '", ' + fontObj.fallbackName;
// Some font backends cannot handle fonts below certain size.
// Keeping the font at minimal size and using the fontSizeScale to change
// the current transformation matrix before the fillText/strokeText.
// See https://bugzilla.mozilla.org/show_bug.cgi?id=726227
var browserFontSize = size >= MIN_FONT_SIZE ? size : MIN_FONT_SIZE;
this.current.fontSizeScale = browserFontSize != MIN_FONT_SIZE ? 1.0 :
size / MIN_FONT_SIZE;
var rule = italic + ' ' + bold + ' ' + browserFontSize + 'px ' + typeface;
this.ctx.font = rule;
},
setTextRenderingMode: function CanvasGraphics_setTextRenderingMode(mode) {
this.current.textRenderingMode = mode;
},
setTextRise: function CanvasGraphics_setTextRise(rise) {
this.current.textRise = rise;
},
moveText: function CanvasGraphics_moveText(x, y) {
this.current.x = this.current.lineX += x;
this.current.y = this.current.lineY += y;
},
setLeadingMoveText: function CanvasGraphics_setLeadingMoveText(x, y) {
this.setLeading(-y);
this.moveText(x, y);
},
setTextMatrix: function CanvasGraphics_setTextMatrix(a, b, c, d, e, f) {
this.current.textMatrix = [a, b, c, d, e, f];
this.current.x = this.current.lineX = 0;
this.current.y = this.current.lineY = 0;
},
nextLine: function CanvasGraphics_nextLine() {
this.moveText(0, this.current.leading);
},
applyTextTransforms: function CanvasGraphics_applyTextTransforms() {
var ctx = this.ctx;
var current = this.current;
var textHScale = current.textHScale;
var fontMatrix = current.fontMatrix || IDENTITY_MATRIX;
ctx.transform.apply(ctx, current.textMatrix);
ctx.scale(1, -1);
ctx.translate(current.x, -current.y - current.textRise);
ctx.transform.apply(ctx, fontMatrix);
ctx.scale(textHScale, 1);
},
createTextGeometry: function CanvasGraphics_createTextGeometry() {
var geometry = {};
var ctx = this.ctx;
var font = this.current.font;
var ctxMatrix = ctx.mozCurrentTransform;
if (ctxMatrix) {
var bl = Util.applyTransform([0, 0], ctxMatrix);
var tr = Util.applyTransform([1, 1], ctxMatrix);
geometry.x = bl[0];
geometry.y = bl[1];
geometry.hScale = tr[0] - bl[0];
geometry.vScale = tr[1] - bl[1];
}
geometry.spaceWidth = font.spaceWidth;
geometry.fontName = font.loadedName;
geometry.fontFamily = font.fallbackName;
geometry.fontSize = this.current.fontSize;
return geometry;
},
showText: function CanvasGraphics_showText(str, skipTextSelection) {
var ctx = this.ctx;
var current = this.current;
var font = current.font;
var glyphs = font.charsToGlyphs(str);
var fontSize = current.fontSize;
var fontSizeScale = current.fontSizeScale;
var charSpacing = current.charSpacing;
var wordSpacing = current.wordSpacing;
var textHScale = current.textHScale;
var fontMatrix = current.fontMatrix || IDENTITY_MATRIX;
var textHScale2 = textHScale * fontMatrix[0];
var glyphsLength = glyphs.length;
var textLayer = this.textLayer;
var geom;
var textSelection = textLayer && !skipTextSelection ? true : false;
var textRenderingMode = current.textRenderingMode;
var canvasWidth = 0.0;
// Type3 fonts - each glyph is a "mini-PDF"
if (font.coded) {
ctx.save();
ctx.transform.apply(ctx, current.textMatrix);
ctx.translate(current.x, current.y);
ctx.scale(textHScale, 1);
if (textSelection) {
this.save();
ctx.scale(1, -1);
geom = this.createTextGeometry();
this.restore();
}
for (var i = 0; i < glyphsLength; ++i) {
var glyph = glyphs[i];
if (glyph === null) {
// word break
this.ctx.translate(wordSpacing, 0);
current.x += wordSpacing * textHScale;
continue;
}
this.save();
ctx.scale(fontSize, fontSize);
ctx.transform.apply(ctx, fontMatrix);
this.executeOperatorList(glyph.operatorList);
this.restore();
var transformed = Util.applyTransform([glyph.width, 0], fontMatrix);
var width = transformed[0] * fontSize +
Util.sign(current.fontMatrix[0]) * charSpacing;
ctx.translate(width, 0);
current.x += width * textHScale;
canvasWidth += width;
}
ctx.restore();
} else {
ctx.save();
this.applyTextTransforms();
var lineWidth = current.lineWidth;
var a1 = current.textMatrix[0], b1 = current.textMatrix[1];
var a2 = fontMatrix[0], b2 = fontMatrix[1];
var scale = Math.sqrt((a1 * a1 + b1 * b1) * (a2 * a2 + b2 * b2));
if (scale == 0 || lineWidth == 0)
lineWidth = this.getSinglePixelWidth();
else
lineWidth /= scale;
if (textSelection)
geom = this.createTextGeometry();
if (fontSizeScale != 1.0) {
ctx.scale(fontSizeScale, fontSizeScale);
lineWidth /= fontSizeScale;
}
ctx.lineWidth = lineWidth;
var x = 0;
for (var i = 0; i < glyphsLength; ++i) {
var glyph = glyphs[i];
if (glyph === null) {
// word break
x += Util.sign(current.fontMatrix[0]) * wordSpacing;
continue;
}
var character = glyph.fontChar;
var charWidth = glyph.width * fontSize * 0.001 +
Util.sign(current.fontMatrix[0]) * charSpacing;
if (!glyph.disabled) {
var scaledX = x / fontSizeScale;
switch (textRenderingMode) {
default: // other unsupported rendering modes
case TextRenderingMode.FILL:
case TextRenderingMode.FILL_ADD_TO_PATH:
ctx.fillText(character, scaledX, 0);
break;
case TextRenderingMode.STROKE:
case TextRenderingMode.STROKE_ADD_TO_PATH:
ctx.strokeText(character, scaledX, 0);
break;
case TextRenderingMode.FILL_STROKE:
case TextRenderingMode.FILL_STROKE_ADD_TO_PATH:
ctx.fillText(character, scaledX, 0);
ctx.strokeText(character, scaledX, 0);
break;
case TextRenderingMode.INVISIBLE:
case TextRenderingMode.ADD_TO_PATH:
break;
}
if (textRenderingMode & TextRenderingMode.ADD_TO_PATH_FLAG) {
var clipCtx = this.getCurrentTextClipping();
clipCtx.fillText(character, scaledX, 0);
}
}
x += charWidth;
canvasWidth += charWidth;
}
current.x += x * textHScale2;
ctx.restore();
}
if (textSelection) {
geom.canvasWidth = canvasWidth;
this.textLayer.appendText(geom);
}
return canvasWidth;
},
showSpacedText: function CanvasGraphics_showSpacedText(arr) {
var ctx = this.ctx;
var current = this.current;
var font = current.font;
var fontSize = current.fontSize;
var textHScale = current.textHScale;
if (!font.coded)
textHScale *= (current.fontMatrix || IDENTITY_MATRIX)[0];
var arrLength = arr.length;
var
var
var
var
textLayer = this.textLayer;
geom;
canvasWidth = 0.0;
textSelection = textLayer ? true : false;
if (textSelection) {
ctx.save();
// Type3 fonts - each glyph is a "mini-PDF" (see also showText)
if (font.coded) {
ctx.transform.apply(ctx, current.textMatrix);
ctx.scale(1, -1);
ctx.translate(current.x, -1 * current.y);
ctx.scale(textHScale, 1);
} else
this.applyTextTransforms();
geom = this.createTextGeometry();
ctx.restore();
}
for (var i = 0; i < arrLength; ++i) {
var e = arr[i];
if (isNum(e)) {
var spacingLength = -e * 0.001 * fontSize * textHScale;
current.x += spacingLength;
if (textSelection)
canvasWidth += spacingLength;
} else if (isString(e)) {
var shownCanvasWidth = this.showText(e, true);
if (textSelection)
canvasWidth += shownCanvasWidth;
} else {
error('TJ array element ' + e + ' is not string or num');
}
}
if (textSelection) {
geom.canvasWidth = canvasWidth;
this.textLayer.appendText(geom);
}
},
nextLineShowText: function CanvasGraphics_nextLineShowText(text) {
this.nextLine();
this.showText(text);
},
nextLineSetSpacingShowText:
function CanvasGraphics_nextLineSetSpacingShowText(wordSpacing,
charSpacing,
text) {
this.setWordSpacing(wordSpacing);
this.setCharSpacing(charSpacing);
this.nextLineShowText(text);
},
// Type3 fonts
setCharWidth: function CanvasGraphics_setCharWidth(xWidth, yWidth) {
// We can safely ignore this since the width should be the same
// as the width in the Widths array.
},
this.current.fillColor = color;
},
shadingFill: function CanvasGraphics_shadingFill(patternIR) {
var ctx = this.ctx;
this.save();
var pattern = Pattern.shadingFromIR(patternIR);
ctx.fillStyle = pattern.getPattern(ctx);
var inv = ctx.mozCurrentTransformInverse;
if (inv) {
var canvas = ctx.canvas;
var width = canvas.width;
var height = canvas.height;
var
var
var
var
bl
br
ul
ur
=
=
=
=
var
var
var
var
x0
y0
x1
y1
=
=
=
=
Math.min(bl[0],
Math.min(bl[1],
Math.max(bl[0],
Math.max(bl[1],
br[0],
br[1],
br[0],
br[1],
ul[0],
ul[1],
ul[0],
ul[1],
ur[0]);
ur[1]);
ur[0]);
ur[1]);
this.clip();
this.endPath();
}
},
paintFormXObjectEnd: function CanvasGraphics_paintFormXObjectEnd() {
var depth = this.current.paintFormXObjectDepth;
do {
this.restore();
// some pdf don't close all restores inside object
// closing those for them
} while (this.current.paintFormXObjectDepth >= depth);
},
paintJpegXObject: function CanvasGraphics_paintJpegXObject(objId, w, h) {
var domImage = this.objs.get(objId);
if (!domImage) {
error('Dependent image isn\'t ready yet');
}
this.save();
var ctx = this.ctx;
// scale the image to the unit square
ctx.scale(1 / w, -1 / h);
ctx.drawImage(domImage, 0, 0, domImage.width, domImage.height,
0, -h, w, h);
this.restore();
},
paintImageMaskXObject: function CanvasGraphics_paintImageMaskXObject(
imgArray, inverseDecode, width, height) {
function applyStencilMask(buffer, inverseDecode) {
var imgArrayPos = 0;
var i, j, mask, buf;
// removing making non-masked pixels transparent
var bufferPos = 3; // alpha component offset
for (i = 0; i < height; i++) {
mask = 0;
for (j = 0; j < width; j++) {
if (!mask) {
buf = imgArray[imgArrayPos++];
mask = 128;
}
if (!(buf & mask) == inverseDecode) {
buffer[bufferPos] = 0;
}
bufferPos += 4;
mask >>= 1;
}
}
}
function rescaleImage(pixels, widthScale, heightScale) {
var scaledWidth = Math.ceil(width / widthScale);
var scaledHeight = Math.ceil(height / heightScale);
var itemsSum = new Uint32Array(scaledWidth * scaledHeight * 4);
var itemsCount = new Uint32Array(scaledWidth * scaledHeight);
tmpCtx.putImageData(imgData, 0, 0);
ctx.drawImage(tmpCanvas, 0, -h);
}
this.restore();
},
paintImageXObject: function CanvasGraphics_paintImageXObject(objId) {
var imgData = this.objs.get(objId);
if (!imgData)
error('Dependent image isn\'t ready yet');
this.save();
var ctx = this.ctx;
var w = imgData.width;
var h = imgData.height;
// scale the image to the unit square
ctx.scale(1 / w, -1 / h);
var tmpCanvas = createScratchCanvas(w, h);
var tmpCtx = tmpCanvas.getContext('2d');
this.putBinaryImageData(tmpCtx, imgData, w, h);
ctx.drawImage(tmpCanvas, 0, -h);
this.restore();
},
putBinaryImageData: function CanvasGraphics_putBinaryImageData(ctx, imgData,
w, h) {
var tmpImgData = 'createImageData' in ctx ? ctx.createImageData(w, h) :
ctx.getImageData(0, 0, w, h);
var tmpImgDataPixels = tmpImgData.data;
var data = imgData.data;
if ('set' in tmpImgDataPixels)
tmpImgDataPixels.set(data);
else {
// Copy over the imageData pixel by pixel.
for (var i = 0, ii = tmpImgDataPixels.length; i < ii; i++)
tmpImgDataPixels[i] = data[i];
}
ctx.putImageData(tmpImgData, 0, 0);
},
// Marked content
markPoint: function CanvasGraphics_markPoint(tag) {
// TODO Marked content.
},
markPointProps: function CanvasGraphics_markPointProps(tag, properties) {
// TODO Marked content.
},
beginMarkedContent: function CanvasGraphics_beginMarkedContent(tag) {
// TODO Marked content.
},
beginMarkedContentProps: function CanvasGraphics_beginMarkedContentProps(
tag, properties) {
// TODO Marked content.
},
endMarkedContent: function CanvasGraphics_endMarkedContent() {
return Name;
})();
var Cmd = (function CmdClosure() {
function Cmd(cmd) {
this.cmd = cmd;
}
Cmd.prototype = {};
var cmdCache = {};
Cmd.get = function Cmd_get(cmd) {
var cmdValue = cmdCache[cmd];
if (cmdValue)
return cmdValue;
return cmdCache[cmd] = new Cmd(cmd);
};
return Cmd;
})();
var Dict = (function DictClosure() {
// xref is optional
function Dict(xref) {
// Map should only be used internally, use functions below to access.
var map = Object.create(null);
this.assignXref = function Dict_assignXref(newXref) {
xref = newXref;
};
// automatically dereferences Ref objects
this.get = function Dict_get(key1, key2, key3) {
var value;
if (typeof (value = map[key1]) != 'undefined' || key1 in map ||
typeof key2 == 'undefined') {
return xref ? xref.fetchIfRef(value) : value;
}
if (typeof (value = map[key2]) != 'undefined' || key2 in map ||
typeof key3 == 'undefined') {
return xref ? xref.fetchIfRef(value) : value;
}
value = map[key3] || null;
return xref ? xref.fetchIfRef(value) : value;
};
// no dereferencing
this.getRaw = function Dict_getRaw(key) {
return map[key];
};
// creates new map and dereferences all Refs
this.getAll = function Dict_getAll() {
var all = {};
for (var key in map) {
var obj = this.get(key);
all[key] = obj instanceof Dict ? obj.getAll() : obj;
}
return all;
};
this.set = function Dict_set(key, value) {
map[key] = value;
};
this.has = function Dict_has(key) {
return key in map;
};
this.forEach = function Dict_forEach(callback) {
for (var key in map) {
callback(key, this.get(key));
}
};
};
return Dict;
})();
var Ref = (function RefClosure() {
function Ref(num, gen) {
this.num = num;
this.gen = gen;
}
Ref.prototype = {};
return Ref;
})();
// The reference is identified by number and generation,
// this structure stores only one instance of the reference.
var RefSet = (function RefSetClosure() {
function RefSet() {
this.dict = {};
}
RefSet.prototype = {
has: function RefSet_has(ref) {
return !!this.dict['R' + ref.num + '.' + ref.gen];
},
put: function RefSet_put(ref) {
this.dict['R' + ref.num + '.' + ref.gen] = ref;
}
};
return RefSet;
})();
var Catalog = (function CatalogClosure() {
function Catalog(xref) {
this.xref = xref;
var obj = xref.getCatalogObj();
assertWellFormed(isDict(obj), 'catalog object is not a dictionary');
this.catDict = obj;
}
Catalog.prototype = {
get metadata() {
var streamRef = this.catDict.getRaw('Metadata');
if (!isRef(streamRef))
return shadow(this, 'metadata', null);
var encryptMetadata = !this.xref.encrypt ? false :
this.xref.encrypt.encryptMetadata;
var stream = this.xref.fetch(streamRef, !encryptMetadata);
var metadata;
if (stream && isDict(stream.dict)) {
var type = stream.dict.get('Type');
var subtype = stream.dict.get('Subtype');
if (isName(type) && isName(subtype) &&
type.name === 'Metadata' && subtype.name === 'XML') {
// XXX: This should examine the charset the XML document defines,
// however since there are currently no real means to decode
// arbitrary charsets, let's just hope that the author of the PDF
// was reasonable enough to stick with the XML default charset,
// which is UTF-8.
try {
metadata = stringToUTF8String(bytesToString(stream.getBytes()));
} catch (e) {
info('Skipping invalid metadata.');
}
}
}
return shadow(this, 'metadata', metadata);
},
get toplevelPagesDict() {
var pagesObj = this.catDict.get('Pages');
assertWellFormed(isDict(pagesObj), 'invalid top-level pages dictionary');
// shadow the prototype getter
return shadow(this, 'toplevelPagesDict', pagesObj);
},
get documentOutline() {
var xref = this.xref;
var obj = this.catDict.get('Outlines');
var root = { items: [] };
if (isDict(obj)) {
obj = obj.getRaw('First');
var processed = new RefSet();
if (isRef(obj)) {
var queue = [{obj: obj, parent: root}];
// to avoid recursion keeping track of the items
// in the processed dictionary
processed.put(obj);
while (queue.length > 0) {
var i = queue.shift();
var outlineDict = xref.fetchIfRef(i.obj);
if (outlineDict === null)
continue;
if (!outlineDict.has('Title'))
error('Invalid outline item');
var dest = outlineDict.get('A');
if (dest)
dest = dest.get('D');
else if (outlineDict.has('Dest')) {
dest = outlineDict.getRaw('Dest');
if (isName(dest))
dest = dest.name;
}
var title = outlineDict.get('Title');
var outlineItem = {
dest: dest,
title: stringToPDFString(title),
color: outlineDict.get('C') || [0, 0, 0],
count: outlineDict.get('Count'),
bold: !!(outlineDict.get('F') & 2),
italic: !!(outlineDict.get('F') & 1),
items: []
};
i.parent.items.push(outlineItem);
obj = outlineDict.getRaw('First');
if (isRef(obj) && !processed.has(obj)) {
queue.push({obj: obj, parent: outlineItem});
processed.put(obj);
}
obj = outlineDict.getRaw('Next');
if (isRef(obj) && !processed.has(obj)) {
queue.push({obj: obj, parent: i.parent});
processed.put(obj);
}
}
}
}
obj = root.items.length > 0 ? root.items : null;
return shadow(this, 'documentOutline', obj);
},
get numPages() {
var obj = this.toplevelPagesDict.get('Count');
assertWellFormed(
isInt(obj),
'page count in top level pages object is not an integer'
);
// shadow the prototype getter
return shadow(this, 'num', obj);
},
traverseKids: function Catalog_traverseKids(pagesDict) {
var pageCache = this.pageCache;
var kids = pagesDict.get('Kids');
assertWellFormed(isArray(kids),
'page dictionary kids object is not an array');
for (var i = 0, ii = kids.length; i < ii; ++i) {
var kid = kids[i];
assertWellFormed(isRef(kid),
'page dictionary kid is not a reference');
var obj = this.xref.fetch(kid);
if (isDict(obj, 'Page') || (isDict(obj) && !obj.has('Kids'))) {
pageCache.push(new Page(this.xref, pageCache.length, obj, kid));
} else { // must be a child page dictionary
assertWellFormed(
isDict(obj),
'page dictionary kid reference points to wrong type of object'
);
this.traverseKids(obj);
}
}
},
get destinations() {
function fetchDestination(dest) {
return isDict(dest) ? dest.get('D') : dest;
}
var xref = this.xref;
var dests = {}, nameTreeRef, nameDictionaryRef;
var obj = this.catDict.get('Names');
if (obj)
nameTreeRef = obj.getRaw('Dests');
else if (this.catDict.has('Dests'))
nameDictionaryRef = this.catDict.get('Dests');
if (nameDictionaryRef) {
// reading simple destination dictionary
obj = nameDictionaryRef;
obj.forEach(function catalogForEach(key, value) {
if (!value) return;
dests[key] = fetchDestination(value);
});
}
if (nameTreeRef) {
// reading name tree
var processed = new RefSet();
processed.put(nameTreeRef);
var queue = [nameTreeRef];
while (queue.length > 0) {
var i, n;
obj = xref.fetch(queue.shift());
if (obj.has('Kids')) {
var kids = obj.get('Kids');
for (i = 0, n = kids.length; i < n; i++) {
var kid = kids[i];
if (processed.has(kid))
error('invalid destinations');
queue.push(kid);
processed.put(kid);
}
continue;
}
var names = obj.get('Names');
for (i = 0, n = names.length; i < n; i += 2) {
dests[names[i]] = fetchDestination(xref.fetchIfRef(names[i + 1]));
}
}
}
return shadow(this, 'destinations', dests);
},
getPage: function Catalog_getPage(n) {
var pageCache = this.pageCache;
if (!pageCache) {
pageCache = this.pageCache = [];
this.traverseKids(this.toplevelPagesDict);
}
return this.pageCache[n - 1];
}
};
return Catalog;
})();
var XRef = (function XRefClosure() {
function XRef(stream, startXRef, mainXRefEntriesOffset, password) {
this.stream = stream;
this.entries = [];
this.xrefstms = {};
var trailerDict = this.readXRef(startXRef);
trailerDict.assignXref(this);
this.trailer = trailerDict;
// prepare the XRef cache
this.cache = [];
var encrypt = trailerDict.get('Encrypt');
if (encrypt) {
var fileId = trailerDict.get('ID');
this.encrypt = new CipherTransformFactory(encrypt, fileId[0], password);
}
// get the root dictionary (catalog) object
if (!(this.root = trailerDict.get('Root')))
error('Invalid root reference');
}
XRef.prototype = {
readXRefTable: function XRef_readXRefTable(parser) {
// Example of cross-reference table:
// xref
// 0 1
<-- subsection header (first obj #, obj count)
// 0000000000 65535 f
<-- actual object (offset, generation #, f/n)
// 23 2
<-- subsection header ... and so on ...
// 0000025518 00002 n
// 0000025635 00000 n
// trailer
// ...
// Outer loop is over subsection headers
var obj;
while (!isCmd(obj = parser.getObj(), 'trailer')) {
var first = obj,
count = parser.getObj();
if (!isInt(first) || !isInt(count))
error('Invalid XRef table: wrong types in subsection header');
// Inner loop is over objects themselves
for (var i = 0; i < count; i++) {
var entry = {};
entry.offset = parser.getObj();
entry.gen = parser.getObj();
var type = parser.getObj();
if (isCmd(type, 'f'))
entry.free = true;
else if (isCmd(type, 'n'))
entry.uncompressed = true;
// Validate entry obj
if (!isInt(entry.offset) || !isInt(entry.gen) ||
!(entry.free || entry.uncompressed)) {
error('Invalid entry in XRef subsection: ' + first + ', ' + count);
}
if (!this.entries[i + first])
this.entries[i + first] = entry;
}
}
// Sanity check: as per spec, first object must be free
if (this.entries[0] && !this.entries[0].free)
error('Invalid XRef table: unexpected first object');
// Sanity check
if (!isCmd(obj, 'trailer'))
error('Invalid XRef table: could not find trailer dictionary');
// Read trailer dictionary, e.g.
// trailer
//
<< /Size 22
//
/Root 20R
//
/Info 10R
//
/ID [ <81b14aafa313db63dbd6f981e49f94f4> ]
//
>>
// The parser goes through the entire stream << ... >> and provides
// a getter interface for the key-value table
var dict = parser.getObj();
if (!isDict(dict))
error('Invalid XRef table: could not parse trailer dictionary');
return dict;
},
readXRefStream: function XRef_readXRefStream(stream) {
var streamParameters = stream.parameters;
var byteWidths = streamParameters.get('W');
var range = streamParameters.get('Index');
if (!range)
range = [0, streamParameters.get('Size')];
var i, j;
while (range.length > 0) {
var first = range[0], n = range[1];
if (!isInt(first) || !isInt(n))
error('Invalid XRef range fields: ' + first + ', ' + n);
var typeFieldWidth = byteWidths[0];
var offsetFieldWidth = byteWidths[1];
var generationFieldWidth = byteWidths[2];
if (!isInt(typeFieldWidth) || !isInt(offsetFieldWidth) ||
!isInt(generationFieldWidth)) {
error('Invalid XRef entry fields length: ' + first + ', ' + n);
}
for (i = 0; i < n; ++i) {
var type = 0, offset = 0, generation = 0;
for (j = 0; j < typeFieldWidth; ++j)
type = (type << 8) | stream.getByte();
// if type field is absent, its default value = 1
if (typeFieldWidth == 0)
type = 1;
for (j = 0; j < offsetFieldWidth; ++j)
offset = (offset << 8) | stream.getByte();
for (j = 0; j < generationFieldWidth; ++j)
if (!isDict(dict = parser.getObj()))
continue;
// taking the first one with 'ID'
if (dict.has('ID'))
return dict;
}
// no tailer with 'ID', taking last one (if exists)
if (dict)
return dict;
// nothing helps
// calling error() would reject worker with an UnknownErrorException.
throw new InvalidPDFException('Invalid PDF structure');
},
readXRef: function XRef_readXRef(startXRef, recoveryMode) {
var stream = this.stream;
stream.pos = startXRef;
try {
var parser = new Parser(new Lexer(stream), true, null);
var obj = parser.getObj();
var dict;
// Get dictionary
if (isCmd(obj, 'xref')) {
// Parse end-of-file XRef
dict = this.readXRefTable(parser);
// Recursively get other XRefs 'XRefStm', if any
obj = dict.get('XRefStm');
if (isInt(obj)) {
var pos = obj;
// ignore previously loaded xref streams
// (possible infinite recursion)
if (!(pos in this.xrefstms)) {
this.xrefstms[pos] = 1;
this.readXRef(pos);
}
}
} else if (isInt(obj)) {
// Parse in-stream XRef
if (!isInt(parser.getObj()) ||
!isCmd(parser.getObj(), 'obj') ||
!isStream(obj = parser.getObj())) {
error('Invalid XRef stream');
}
dict = this.readXRefStream(obj);
if (!dict)
error('Failed to read XRef stream');
}
// Recursively get previous dictionary, if any
obj = dict.get('Prev');
if (isInt(obj))
this.readXRef(obj, recoveryMode);
else if (isRef(obj)) {
// The spec says Prev must not be a reference, i.e. "/Prev NNN"
// This is a fallback for non-compliant PDFs, i.e. "/Prev NNN 0 R"
this.readXRef(obj.num, recoveryMode);
}
return dict;
} catch (e) {
log('(while reading XRef): ' + e);
}
if (recoveryMode)
return;
warn('Indexing all PDF objects');
return this.indexObjects();
},
getEntry: function XRef_getEntry(i) {
var e = this.entries[i];
if (e === null)
return null;
return e.free || !e.offset ? null : e; // returns null if entry is free
},
fetchIfRef: function XRef_fetchIfRef(obj) {
if (!isRef(obj))
return obj;
return this.fetch(obj);
},
fetch: function XRef_fetch(ref, suppressEncryption) {
assertWellFormed(isRef(ref), 'ref object is not a reference');
var num = ref.num;
if (num in this.cache)
return this.cache[num];
var e = this.getEntry(num);
// the referenced entry can be free
if (e === null)
return (this.cache[num] = e);
var gen = ref.gen;
var stream, parser;
if (e.uncompressed) {
if (e.gen != gen)
error('inconsistent generation in XRef');
stream = this.stream.makeSubStream(e.offset);
parser = new Parser(new Lexer(stream), true, this);
var obj1 = parser.getObj();
var obj2 = parser.getObj();
var obj3 = parser.getObj();
if (!isInt(obj1) || obj1 != num ||
!isInt(obj2) || obj2 != gen ||
!isCmd(obj3)) {
error('bad XRef entry');
}
if (!isCmd(obj3, 'obj')) {
// some bad pdfs use "obj1234" and really mean 1234
if (obj3.cmd.indexOf('obj') == 0) {
num = parseInt(obj3.cmd.substring(3), 10);
if (!isNaN(num))
return num;
}
error('bad XRef entry');
}
if (this.encrypt && !suppressEncryption) {
try {
e = parser.getObj(this.encrypt.createCipherTransform(num, gen));
} catch (ex) {
// almost all streams must be encrypted, but sometimes
// they are not probably due to some broken generators
// re-trying without encryption
return this.fetch(ref, true);
}
} else {
e = parser.getObj();
}
// Don't cache streams since they are mutable (except images).
if (!isStream(e) || e instanceof JpegStream)
this.cache[num] = e;
return e;
}
// compressed entry
var tableOffset = e.offset;
stream = this.fetch(new Ref(tableOffset, 0));
if (!isStream(stream))
error('bad ObjStm stream');
var first = stream.parameters.get('First');
var n = stream.parameters.get('N');
if (!isInt(first) || !isInt(n)) {
error('invalid first and n parameters for ObjStm stream');
}
parser = new Parser(new Lexer(stream), false, this);
parser.allowStreams = true;
var i, entries = [], nums = [];
// read the object numbers to populate cache
for (i = 0; i < n; ++i) {
num = parser.getObj();
if (!isInt(num)) {
error('invalid object number in the ObjStm stream: ' + num);
}
nums.push(num);
var offset = parser.getObj();
if (!isInt(offset)) {
error('invalid object offset in the ObjStm stream: ' + offset);
}
}
// read stream objects for cache
for (i = 0; i < n; ++i) {
entries.push(parser.getObj());
num = nums[i];
var entry = this.entries[num];
if (entry && entry.offset === tableOffset && entry.gen === i) {
this.cache[num] = entries[i];
}
}
e = entries[e.gen];
if (!e) {
error('bad XRef entry for compressed object');
}
return e;
},
getCatalogObj: function XRef_getCatalogObj() {
return this.root;
}
};
return XRef;
})();
/**
* A PDF document and page is built of many objects. E.g. there are objects
* for fonts, images, rendering code and such. These objects might get processed
* inside of a worker. The `PDFObjects` implements some basic functions to
* manage these objects.
*/
var PDFObjects = (function PDFObjectsClosure() {
function PDFObjects() {
this.objs = {};
}
PDFObjects.prototype = {
/**
* Internal function.
* Ensures there is an object defined for `objId`. Stores `data` on the
* object *if* it is created.
*/
ensureObj: function PDFObjects_ensureObj(objId, data) {
if (this.objs[objId])
return this.objs[objId];
return this.objs[objId] = new Promise(objId, data);
},
/**
* If called *without* callback, this returns the data of `objId` but the
* object needs to be resolved. If it isn't, this function throws.
*
* If called *with* a callback, the callback is called with the data of the
* object once the object is resolved. That means, if you call this
* function and the object is already resolved, the callback gets called
* right away.
*/
get: function PDFObjects_get(objId, callback) {
// If there is a callback, then the get can be async and the object is
// not required to be resolved right now
if (callback) {
this.ensureObj(objId).then(callback);
return null;
}
// If there isn't a callback, the user expects to get the resolved data
// directly.
var obj = this.objs[objId];
// If there isn't an object yet or the object isn't resolved, then the
// data isn't ready yet!
if (!obj || !obj.isResolved)
error('Requesting object that isn\'t resolved yet ' + objId);
return obj.data;
},
/**
* Resolves the object `objId` with optional `data`.
*/
resolve: function PDFObjects_resolve(objId, data) {
return this.constructSampledFromIR(IR);
case CONSTRUCT_INTERPOLATED:
return this.constructInterpolatedFromIR(IR);
case CONSTRUCT_STICHED:
return this.constructStichedFromIR(IR);
case CONSTRUCT_POSTSCRIPT:
default:
return this.constructPostScriptFromIR(IR);
}
},
parse: function PDFFunction_parse(xref, fn) {
var IR = this.getIR(xref, fn);
return this.fromIR(IR);
},
constructSampled: function PDFFunction_constructSampled(str, dict) {
function toMultiArray(arr) {
var inputLength = arr.length;
var outputLength = arr.length / 2;
var out = [];
var index = 0;
for (var i = 0; i < inputLength; i += 2) {
out[index] = [arr[i], arr[i + 1]];
++index;
}
return out;
}
var domain = dict.get('Domain');
var range = dict.get('Range');
if (!domain || !range)
error('No domain or range');
var inputSize = domain.length / 2;
var outputSize = range.length / 2;
domain = toMultiArray(domain);
range = toMultiArray(range);
var size = dict.get('Size');
var bps = dict.get('BitsPerSample');
var order = dict.get('Order') || 1;
if (order !== 1) {
// No description how cubic spline interpolation works in PDF32000:2008
// As in poppler, ignoring order, linear interpolation may work as good
TODO('No support for cubic spline interpolation: ' + order);
}
var encode = dict.get('Encode');
if (!encode) {
encode = [];
for (var i = 0; i < inputSize; ++i) {
encode.push(0);
encode.push(size[i] - 1);
}
}
encode = toMultiArray(encode);
var decode = dict.get('Decode');
if (!decode)
decode = range;
else
decode = toMultiArray(decode);
var samples = this.getSampleArray(size, outputSize, bps, str);
return [
CONSTRUCT_SAMPLED, inputSize, domain, encode, decode, samples, size,
outputSize, Math.pow(2, bps) - 1, range
];
},
constructSampledFromIR: function PDFFunction_constructSampledFromIR(IR) {
// See chapter 3, page 109 of the PDF reference
function interpolate(x, xmin, xmax, ymin, ymax) {
return ymin + ((x - xmin) * ((ymax - ymin) / (xmax - xmin)));
}
return function constructSampledFromIRResult(args) {
// See chapter 3, page 110 of the PDF reference.
var m = IR[1];
var domain = IR[2];
var encode = IR[3];
var decode = IR[4];
var samples = IR[5];
var size = IR[6];
var n = IR[7];
var mask = IR[8];
var range = IR[9];
if (m != args.length)
error('Incorrect number of arguments: ' + m + ' != ' +
args.length);
var x = args;
// Building the cube vertices: its part and sample index
// http://rjwagner49.com/Mathematics/Interpolation.pdf
var cubeVertices = 1 << m;
var cubeN = new Float64Array(cubeVertices);
var cubeVertex = new Uint32Array(cubeVertices);
for (var j = 0; j < cubeVertices; j++)
cubeN[j] = 1;
var k = n, pos = 1;
// Map x_i to y_j for 0 <= i < m using the sampled function.
for (var i = 0; i < m; ++i) {
// x_i' = min(max(x_i, Domain_2i), Domain_2i+1)
var domain_2i = domain[i][0];
var domain_2i_1 = domain[i][1];
var xi = Math.min(Math.max(x[i], domain_2i), domain_2i_1);
// e_i = Interpolate(x_i', Domain_2i, Domain_2i+1,
//
Encode_2i, Encode_2i+1)
var e = interpolate(xi, domain_2i, domain_2i_1,
encode[i][0], encode[i][1]);
// e_i' = min(max(e_i, 0), Size_i - 1)
var size_i = size[i];
var c0 = IR[1];
var diff = IR[2];
var n = IR[3];
var length = diff.length;
return function constructInterpolatedFromIRResult(args) {
var x = n == 1 ? args[0] : Math.pow(args[0], n);
var out = [];
for (var j = 0; j < length; ++j)
out.push(c0[j] + (x * diff[j]));
return out;
}
},
constructStiched: function PDFFunction_constructStiched(fn, dict, xref) {
var domain = dict.get('Domain');
if (!domain)
error('No domain');
var inputSize = domain.length / 2;
if (inputSize != 1)
error('Bad domain for stiched function');
var fnRefs = dict.get('Functions');
var fns = [];
for (var i = 0, ii = fnRefs.length; i < ii; ++i)
fns.push(PDFFunction.getIR(xref, xref.fetchIfRef(fnRefs[i])));
var bounds = dict.get('Bounds');
var encode = dict.get('Encode');
return [CONSTRUCT_STICHED, domain, bounds, encode, fns];
},
constructStichedFromIR: function PDFFunction_constructStichedFromIR(IR) {
var domain = IR[1];
var bounds = IR[2];
var encode = IR[3];
var fnsIR = IR[4];
var fns = [];
for (var i = 0, ii = fnsIR.length; i < ii; i++) {
fns.push(PDFFunction.fromIR(fnsIR[i]));
}
return function constructStichedFromIRResult(args) {
var clip = function constructStichedFromIRClip(v, min, max) {
if (v > max)
v = max;
else if (v < min)
v = min;
return v;
};
// clip to domain
if (cache.has(key))
return cache.get(key);
var stack = evaluator.execute(initialStack);
var transformed = [];
for (i = numOutputs - 1; i >= 0; --i) {
var out = stack.pop();
var rangeIndex = 2 * i;
if (out < range[rangeIndex])
out = range[rangeIndex];
else if (out > range[rangeIndex + 1])
out = range[rangeIndex + 1];
transformed[i] = out;
}
cache.set(key, transformed);
return transformed;
};
}
};
})();
var FunctionCache = (function FunctionCacheClosure() {
// Of 10 PDF's with type4 functions the maxium number of distinct values seen
// was 256. This still may need some tweaking in the future though.
var MAX_CACHE_SIZE = 1024;
function FunctionCache() {
this.cache = {};
this.total = 0;
}
FunctionCache.prototype = {
has: function FunctionCache_has(key) {
return key in this.cache;
},
get: function FunctionCache_get(key) {
return this.cache[key];
},
set: function FunctionCache_set(key, value) {
if (this.total < MAX_CACHE_SIZE) {
this.cache[key] = value;
this.total++;
}
}
};
return FunctionCache;
})();
var PostScriptStack = (function PostScriptStackClosure() {
var MAX_STACK_SIZE = 100;
function PostScriptStack(initialStack) {
this.stack = initialStack || [];
}
PostScriptStack.prototype = {
push: function PostScriptStack_push(value) {
if (this.stack.length >= MAX_STACK_SIZE)
error('PostScript function stack overflow.');
this.stack.push(value);
},
pop: function PostScriptStack_pop() {
if (this.stack.length <= 0)
counter = a;
break;
// all ps operators in alphabetical order (excluding if/ifelse)
case 'abs':
a = stack.pop();
stack.push(Math.abs(a));
break;
case 'add':
b = stack.pop();
a = stack.pop();
stack.push(a + b);
break;
case 'and':
b = stack.pop();
a = stack.pop();
if (isBool(a) && isBool(b))
stack.push(a && b);
else
stack.push(a & b);
break;
case 'atan':
a = stack.pop();
stack.push(Math.atan(a));
break;
case 'bitshift':
b = stack.pop();
a = stack.pop();
if (a > 0)
stack.push(a << b);
else
stack.push(a >> b);
break;
case 'ceiling':
a = stack.pop();
stack.push(Math.ceil(a));
break;
case 'copy':
a = stack.pop();
stack.copy(a);
break;
case 'cos':
a = stack.pop();
stack.push(Math.cos(a));
break;
case 'cvi':
a = stack.pop() | 0;
stack.push(a);
break;
case 'cvr':
// noop
break;
case 'div':
b = stack.pop();
a = stack.pop();
stack.push(a / b);
break;
case 'dup':
stack.copy(1);
break;
case 'eq':
b = stack.pop();
a = stack.pop();
stack.push(a == b);
break;
case 'exch':
stack.roll(2, 1);
break;
case 'exp':
b = stack.pop();
a = stack.pop();
stack.push(Math.pow(a, b));
break;
case 'false':
stack.push(false);
break;
case 'floor':
a = stack.pop();
stack.push(Math.floor(a));
break;
case 'ge':
b = stack.pop();
a = stack.pop();
stack.push(a >= b);
break;
case 'gt':
b = stack.pop();
a = stack.pop();
stack.push(a > b);
break;
case 'idiv':
b = stack.pop();
a = stack.pop();
stack.push((a / b) | 0);
break;
case 'index':
a = stack.pop();
stack.index(a);
break;
case 'le':
b = stack.pop();
a = stack.pop();
stack.push(a <= b);
break;
case 'ln':
a = stack.pop();
stack.push(Math.log(a));
break;
case 'log':
a = stack.pop();
stack.push(Math.log(a) / Math.LN10);
break;
case 'lt':
b = stack.pop();
a = stack.pop();
stack.push(a < b);
break;
case 'mod':
b = stack.pop();
a = stack.pop();
stack.push(a % b);
break;
case 'mul':
b = stack.pop();
a = stack.pop();
stack.push(a * b);
break;
case 'ne':
b = stack.pop();
a = stack.pop();
stack.push(a != b);
break;
case 'neg':
a = stack.pop();
stack.push(-b);
break;
case 'not':
a = stack.pop();
if (isBool(a) && isBool(b))
stack.push(a && b);
else
stack.push(a & b);
break;
case 'or':
b = stack.pop();
a = stack.pop();
if (isBool(a) && isBool(b))
stack.push(a || b);
else
stack.push(a | b);
break;
case 'pop':
stack.pop();
break;
case 'roll':
b = stack.pop();
a = stack.pop();
stack.roll(a, b);
break;
case 'round':
a = stack.pop();
stack.push(Math.round(a));
break;
case 'sin':
a = stack.pop();
stack.push(Math.sin(a));
break;
case 'sqrt':
a = stack.pop();
stack.push(Math.sqrt(a));
break;
case 'sub':
b = stack.pop();
a = stack.pop();
stack.push(a - b);
break;
case 'true':
stack.push(true);
break;
case 'truncate':
a = stack.pop();
a = a < 0 ? Math.ceil(a) : Math.floor(a);
stack.push(a);
break;
case 'xor':
b = stack.pop();
a = stack.pop();
if (isBool(a) && isBool(b))
stack.push(a != b);
else
stack.push(a ^ b);
break;
default:
error('Unknown operator ' + operator);
break;
}
}
return stack.stack;
}
};
return PostScriptEvaluator;
})();
var PostScriptParser = (function PostScriptParserClosure() {
function PostScriptParser(lexer) {
this.lexer = lexer;
this.operators = [];
this.token = null;
this.prev = null;
}
PostScriptParser.prototype = {
nextToken: function PostScriptParser_nextToken() {
this.prev = this.token;
this.token = this.lexer.getToken();
},
accept: function PostScriptParser_accept(type) {
if (this.token.type == type) {
this.nextToken();
return true;
}
return false;
},
expect: function PostScriptParser_expect(type) {
if (this.accept(type))
return true;
error('Unexpected symbol: found ' + this.token.type + ' expected ' +
type + '.');
},
parse: function PostScriptParser_parse() {
this.nextToken();
this.expect(PostScriptTokenTypes.LBRACE);
this.parseBlock();
this.expect(PostScriptTokenTypes.RBRACE);
return this.operators;
},
parseBlock: function PostScriptParser_parseBlock() {
while (true) {
if (this.accept(PostScriptTokenTypes.NUMBER)) {
this.operators.push(this.prev.value);
} else if (this.accept(PostScriptTokenTypes.OPERATOR)) {
this.operators.push(this.prev.value);
} else if (this.accept(PostScriptTokenTypes.LBRACE)) {
this.parseCondition();
} else {
return;
}
}
},
parseCondition: function PostScriptParser_parseCondition() {
// Add two place holders that will be updated later
var conditionLocation = this.operators.length;
this.operators.push(null, null);
this.parseBlock();
this.expect(PostScriptTokenTypes.RBRACE);
if (this.accept(PostScriptTokenTypes.IF)) {
// The true block is right after the 'if' so it just falls through on
// true else it jumps and skips the true block.
this.operators[conditionLocation] = this.operators.length;
this.operators[conditionLocation + 1] = 'jz';
} else if (this.accept(PostScriptTokenTypes.LBRACE)) {
var jumpLocation = this.operators.length;
this.operators.push(null, null);
var endOfTrue = this.operators.length;
this.parseBlock();
this.expect(PostScriptTokenTypes.RBRACE);
this.expect(PostScriptTokenTypes.IFELSE);
// The jump is added at the end of the true block to skip the false
// block.
this.operators[jumpLocation] = this.operators.length;
this.operators[jumpLocation + 1] = 'j';
this.operators[conditionLocation] = endOfTrue;
this.operators[conditionLocation + 1] = 'jz';
} else {
error('PS Function: error parsing conditional.');
}
}
};
return PostScriptParser;
})();
var PostScriptTokenTypes = {
LBRACE: 0,
RBRACE: 1,
NUMBER: 2,
OPERATOR: 3,
IF: 4,
IFELSE: 5
};
var PostScriptToken = (function PostScriptTokenClosure() {
function PostScriptToken(type, value) {
this.type = type;
this.value = value;
}
var opCache = {};
PostScriptToken.getOperator = function PostScriptToken_getOperator(op) {
var ISOAdobeCharset = [
'.notdef', 'space', 'exclam', 'quotedbl', 'numbersign', 'dollar',
'percent', 'ampersand', 'quoteright', 'parenleft', 'parenright',
'asterisk', 'plus', 'comma', 'hyphen', 'period', 'slash', 'zero',
'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight',
'nine', 'colon', 'semicolon', 'less', 'equal', 'greater', 'question',
'at', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
'bracketleft', 'backslash', 'bracketright', 'asciicircum', 'underscore',
'quoteleft', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l',
'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
'braceleft', 'bar', 'braceright', 'asciitilde', 'exclamdown', 'cent',
'sterling', 'fraction', 'yen', 'florin', 'section', 'currency',
'quotesingle', 'quotedblleft', 'guillemotleft', 'guilsinglleft',
'guilsinglright', 'fi', 'fl', 'endash', 'dagger', 'daggerdbl',
'periodcentered', 'paragraph', 'bullet', 'quotesinglbase',
'quotedblbase', 'quotedblright', 'guillemotright', 'ellipsis',
'perthousand', 'questiondown', 'grave', 'acute', 'circumflex', 'tilde',
'macron', 'breve', 'dotaccent', 'dieresis', 'ring', 'cedilla',
'hungarumlaut', 'ogonek', 'caron', 'emdash', 'AE', 'ordfeminine',
'Lslash', 'Oslash', 'OE', 'ordmasculine', 'ae', 'dotlessi', 'lslash',
'oslash', 'oe', 'germandbls', 'onesuperior', 'logicalnot', 'mu',
'trademark', 'Eth', 'onehalf', 'plusminus', 'Thorn', 'onequarter',
var CIDToUnicodeMaps = {
'Adobe-Japan1': [[32, 160], {f: 12, c: 33}, [45, 8209], {f: 46, c: 46}, 165,
{f: 2, c: 93}, [95, 818], [96, 768], {f: 27, c: 97}, 166, 125, [732, 771],
[700, 8217], 92, [699, 8216], 124, [126, 8764], {f: 3, c: 161}, 8260, 402,
0, 164, 8220, 171, {f: 2, c: 8249}, {f: 2, c: 64257}, [8210, 8211], 0, 0,
[183, 8729], 0, 8226, 8218, 8222, 8221, 187, 0, 0, 191, {f: 2, c: 769},
[175, 772], {f: 3, c: 774}, 778, [184, 807], 779, 808, 780, [822, 8212],
198, 170, 321, 216, 338, 186, 230, 305, 322, 248, 339, 223, 173, 169, 172,
174, 0, 0, {f: 2, c: 178}, 181, 185, {f: 3, c: 188}, {f: 6, c: 192},
{f: 16, c: 199}, 0, {f: 6, c: 217}, {f: 6, c: 224}, {f: 16, c: 231}, 0,
{f: 7, c: 249}, 352, 376, 381, [773, 8254], 353, 8482, 382, 0, 8194,
{s: 91}, 65512, {s: 3}, {f: 63, c: 65377}, {s: 243}, [8195, 12288],
{f: 2, c: 12289}, 65292, 65294, 12539, {f: 2, c: 65306}, 65311, 65281,
{f: 2, c: 12443}, 180, 65344, 168, 65342, 65507, 65343, {f: 2, c: 12541},
{f: 2, c: 12445}, 12291, 20189, {f: 3, c: 12293}, 12540, 8213, 8208, 65295,
65340, [12316, 65374], 8214, 65372, 8230, 8229, {s: 4}, {f: 2, c: 65288},
{f: 2, c: 12308}, 65339, 65341, 65371, 65373, {f: 10, c: 12296}, 65291,
[8722, 65293], 177, 215, 247, 65309, 8800, 65308, 65310, {f: 2, c: 8806},
8734, 8756, 9794, 9792, 176, {f: 2, c: 8242}, 8451, 65509, 65284,
{f: 2, c: 65504}, 65285, 65283, 65286, 65290, 65312, 167, 9734, 9733, 9675,
9679, 9678, 9671, 9670, 9633, 9632, 9651, 9650, 9661, 9660, 8251, 12306,
8594, {f: 2, c: 8592}, 8595, 12307, 8712, 8715, {f: 2, c: 8838},
{f: 2, c: 8834}, 8746, 8745, {f: 2, c: 8743}, 65506, 8658, 8660, 8704,
8707, 8736, 8869, 8978, 8706, 8711, 8801, 8786, {f: 2, c: 8810}, 8730,
8765, 8733, 8757, {f: 2, c: 8747}, 8491, 8240, 9839, 9837, 9834,
{f: 2, c: 8224}, 182, 9711, {f: 10, c: 65296}, {f: 26, c: 65313},
{f: 26, c: 65345}, {f: 83, c: 12353}, {f: 86, c: 12449}, {f: 17, c: 913},
{f: 7, c: 931}, {f: 17, c: 945}, {f: 7, c: 963}, {f: 6, c: 1040}, 1025,
{f: 32, c: 1046}, 1105, {f: 26, c: 1078}, 20124, 21782, 23043, 38463,
21696, 24859, 25384, 23030, 36898, 33909, 33564, 31312, 24746, 25569,
28197, 26093, 33894, 33446, 39925, 26771, 22311, 26017, 25201, 23451,
22992, 34427, 39156, 32098, 32190, 39822, 25110, 31903, 34999, 23433,
24245, 25353, 26263, 26696, 38343, 38797, 26447, 20197, 20234, 20301,
20381, 20553, 22258, 22839, 22996, 23041, 23561, 24799, 24847, 24944,
26131, 26885, 28858, 30031, 30064, 31227, 32173, 32239, 32963, 33806,
[12176, 34915], 35586, 36949, 36986, 21307, 20117, 20133, 22495, 32946,
37057, 30959, [12032, 19968], 22769, 28322, 36920, 31282, 33576, 33419,
39983, 20801, 21360, 21693, 21729, 22240, 23035, 24341, 39154, 28139,
32996, 34093, 38498, 38512, 38560, 38907, 21515, 21491, 23431, 28879,
[12155, 32701], 36802, [12204, 38632], 21359, 40284, 31418, 19985, 30867,
[12165, 33276], 28198, 22040, 21764, 27421, 34074, 39995, 23013, 21417,
28006, [12128, 29916], 38287, 22082, 20113, 36939, 38642, 33615, 39180,
21473, 21942, 23344, 24433, 26144, 26355, 26628, 27704, 27891, 27945,
29787, 30408, 31310, 38964, 33521, 34907, 35424, 37613, 28082, 30123,
30410, 39365, 24742, 35585, 36234, 38322, 27022, 21421, 20870, 22290,
22576, 22852, 23476, 24310, 24616, 25513, 25588, 27839, 28436, 28814,
28948, 29017, 29141, 29503, 32257, 33398, 33489, 34199, 36960, 37467,
40219, 22633, 26044, 27738, 29989, 20985, 22830, 22885, 24448, 24540,
25276, 26106, 27178, 27431, 27572, 29579, 32705, 35158, 40236, 40206,
[12009, 40644], 23713, 27798, 33659, 20740, 23627, 25014, 33222, 26742,
29281, [12036, 20057], 20474, 21368, 24681, 28201, 31311, [12211, 38899],
19979, 21270, 20206, 20309, 20285, 20385, 20339, 21152, 21487, 22025,
22799, 23233, 23478, 23521, 31185, 26247, 26524, 26550, 27468, 27827,
[12117, 28779], 29634, 31117, [12146, 31166], 31292, 31623, 33457, 33499,
33540, 33655, 33775, 33747, 34662, 35506, 22057, 36008, 36838, 36942,
38686, 34442, 20420, 23784, 25105, [12123, 29273], 30011, 33253, 33469,
34558, 36032, 38597, 39187, 39381, 20171, 20250, 35299, 22238, 22602,
22730, 24315, 24555, 24618, 24724, 24674, 25040, 25106, 25296, 25913,
39745, 26214, 26800, 28023, 28784, 30028, 30342, 32117, 33445, 34809,
38283, 38542, [12185, 35997], 20977, 21182, 22806, 21683, 23475, 23830,
24936, 27010, 28079, 30861, 33995, 34903, 35442, 37799, 39608, 28012,
39336, 34521, 22435, 26623, 34510, 37390, 21123, 22151, 21508, 24275,
25313, 25785, 26684, 26680, 27579, 29554, 30906, 31339, 35226,
[12179, 35282], 36203, 36611, 37101, 38307, 38548, [12208, 38761], 23398,
23731, 27005, {f: 2, c: 38989}, 25499, 31520, 27179, 27263, 26806, 39949,
28511, 21106, 21917, 24688, 25324, 27963, 28167, 28369, 33883, 35088,
36676, 19988, 39993, 21494, 26907, 27194, 38788, 26666, 20828, 31427,
33970, 37340, 37772, 22107, 40232, 26658, 33541, 33841, 31909, 21000,
33477, [12129, 29926], 20094, 20355, 20896, 23506, 21002, 21208, 21223,
24059, 21914, 22570, 23014, 23436, 23448, 23515, [12082, 24178], 24185,
24739, 24863, 24931, 25022, 25563, 25954, 26577, 26707, 26874, 27454,
27475, 27735, 28450, 28567, 28485, 29872, [12130, 29976], 30435, 30475,
31487, 31649, 31777, 32233, [12152, 32566], 32752, 32925, 33382, 33694,
35251, 35532, 36011, 36996, 37969, 38291, 38289, 38306, 38501, 38867,
39208, 33304, 20024, 21547, 23736, 24012, 29609, 30284, 30524, 23721,
32747, 36107, 38593, 38929, 38996, 39000, 20225, 20238, 21361, 21916,
22120, 22522, 22855, 23305, 23492, 23696, 24076, 24190, 24524, 25582,
26426, 26071, 26082, 26399, 26827, 26820, 27231, 24112, 27589, 27671,
27773, 30079, 31048, 23395, 31232, 32000, 24509, 35215, 35352, 36020,
36215, 36556, 36637, 39138, 39438, [12004, 12225, 39740], [12018, 20096],
20605, 20736, 22931, 23452, 25135, 25216, 25836, 27450, 29344, 30097,
31047, 32681, 34811, 35516, 35696, 25516, 33738, 38816, 21513, 21507,
21931, 26708, 27224, 35440, 30759, 26485, [12233, 40653], 21364, 23458,
33050, 34384, 36870, 19992, 20037, 20167, 20241, 21450, 21560, 23470,
[12088, 24339], 24613, 25937, 26429, 27714, 27762, 27875, 28792, 29699,
31350, 31406, 31496, 32026, 31998, 32102, 26087, [12124, 29275], 21435,
23621, 24040, 25298, 25312, 25369, 28192, 34394, 35377, 36317, 37624,
28417, 31142, [12226, 39770], 20136, {f: 2, c: 20139}, 20379, 20384, 20689,
20807, 31478, 20849, 20982, 21332, 21281, 21375, 21483, 21932, 22659,
23777, 24375, 24394, 24623, 24656, 24685, 25375, 25945, 27211, 27841,
29378, 29421, 30703, 33016, 33029, 33288, 34126, 37111, 37857, 38911,
39255, 39514, 20208, 20957, 23597, 26241, 26989, 23616, 26354, 26997,
[12127, 29577], 26704, 31873, 20677, 21220, 22343, [12081, 24062], 37670,
[12100, 26020], 27427, 27453, 29748, 31105, 31165, 31563, 32202, 33465,
33740, 34943, 35167, 35641, 36817, [12198, 37329], 21535, 37504, 20061,
20534, 21477, 21306, 29399, 29590, 30697, 33510, 36527, 39366, 39368,
39378, 20855, 24858, 34398, 21936, 31354, 20598, 23507, 36935, 38533,
20018, 27355, 37351, 23633, 23624, 25496, 31391, 27795, 38772, 36705,
31402, 29066, 38536, 31874, 26647, 32368, 26705, 37740, 21234, 21531,
34219, 35347, 32676, 36557, 37089, 21350, 34952, 31041, 20418, 20670,
21009, 20804, 21843, 22317, 29674, 22411, 22865, 24418, 24452, 24693,
24950, 24935, 25001, 25522, 25658, 25964, 26223, 26690, 28179, 30054,
31293, 31995, 32076, 32153, 32331, 32619, 33550, 33610, 34509, 35336,
35427, 35686, 36605, 38938, 40335, 33464, 36814, 39912, 21127, 25119,
25731, 28608, 38553, 26689, 20625, [12107, 27424], 27770, 28500,
[12147, 31348], 32080, [12174, 34880], 35363, [12105, 26376], 20214, 20537,
20518, 20581, 20860, 21048, 21091, 21927, 22287, 22533, 23244, 24314,
25010, 25080, 25331, 25458, 26908, 27177, 29309, [12125, 29356], 29486,
30740, 30831, 32121, 30476, 32937, [12178, 35211], 35609, 36066, 36562,
36963, 37749, 38522, 38997, 39443, 40568, 20803, 21407, 21427, 24187,
24358, 28187, 28304, [12126, 29572], 29694, 32067, 33335, [12180, 35328],
35578, 38480, 20046, 20491, 21476, 21628, 22266, 22993, 23396,
[12080, 24049], 24235, 24359, [12094, 25144], 25925, 26543, 28246, 29392,
31946, 34996, 32929, 32993, 33776, [11969, 34382], 35463, 36328, 37431,
38599, 39015, [12238, 40723], 20116, 20114, 20237, 21320, 21577, 21566,
23087, 24460, 24481, 24735, 26791, 27278, 29786, 30849, 35486, 35492,
35703, 37264, 20062, 39881, 20132, 20348, 20399, 20505, 20502, 20809,
20844, 21151, 21177, 21246, 21402, [12061, 21475], 21521, 21518, 21897,
22353, 22434, 22909, 23380, 23389, 23439, [12079, 24037], 24039, 24055,
24184, 24195, 24218, 24247, 24344, 24658, 24908, 25239, 25304, 25511,
25915, 26114, 26179, 26356, 26477, 26657, 26775, 27083, 27743, 27946,
28009, 28207, 28317, 30002, 30343, 30828, 31295, 31968, 32005, 32024,
32094, 32177, 32789, 32771, 32943, 32945, 33108, 33167, 33322, 33618,
[12175, 34892], 34913, 35611, 36002, 36092, 37066, 37237, 37489, 30783,
37628, 38308, 38477, 38917, [12217, 39321], [12220, 39640], 40251, 21083,
21163, 21495, 21512, 22741, 25335, 28640, 35946, 36703, 40633, 20811,
21051, 21578, 22269, 31296, 37239, 40288, [12234, 40658], 29508, 28425,
33136, 29969, 24573, 24794, [12219, 39592], 29403, 36796, 27492, 38915,
20170, 22256, 22372, 22718, 23130, 24680, 25031, 26127, 26118, 26681,
26801, 28151, 30165, 32058, [12169, 33390], 39746, 20123, 20304, 21449,
21766, 23919, 24038, 24046, 26619, 27801, 29811, 30722, 35408, 37782,
35039, 22352, 24231, 25387, 20661, 20652, 20877, 26368, 21705, 22622,
22971, 23472, 24425, 25165, 25505, 26685, 27507, 28168, 28797, 37319,
29312, 30741, 30758, 31085, 25998, 32048, 33756, 35009, 36617, 38555,
21092, 22312, 26448, 32618, 36001, 20916, 22338, 38442, 22586, 27018,
32948, 21682, 23822, 22524, 30869, 40442, 20316, 21066, 21643, 25662,
26152, 26388, 26613, 31364, 31574, 32034, 37679, 26716, 39853, 31545,
21273, 20874, 21047, 23519, 25334, 25774, 25830, 26413, 27578, 34217,
38609, 30352, 39894, 25420, 37638, 39851, [12139, 30399], 26194, 19977,
20632, 21442, [12077, 23665], 24808, 25746, 25955, 26719, 29158, 29642,
29987, 31639, 32386, 34453, 35715, 36059, 37240, 39184, 26028, 26283,
27531, 20181, 20180, 20282, 20351, 21050, 21496, 21490, 21987, 22235,
[12064, 22763], 22987, 22985, 23039, [12070, 23376], 23629, 24066, 24107,
24535, 24605, 25351, [12096, 25903], 23388, 26031, 26045, 26088, 26525,
[12108, 27490], 27515, [12114, 27663], 29509, 31049, 31169, [12151, 31992],
32025, 32043, 32930, 33026, [12164, 33267], 35222, 35422, 35433, 35430,
35468, 35566, 36039, 36060, 38604, 39164, [12013, 27503], 20107, 20284,
20365, 20816, 23383, 23546, 24904, 25345, 26178, 27425, 28363, 27835,
29246, 29885, 30164, 30913, [12144, 31034], [12157, 32780], [12159, 32819],
[12163, 33258], 33940, 36766, 27728, [12229, 40575], 24335, 35672, 40235,
31482, 36600, 23437, 38635, 19971, 21489, 22519, 22833, 23241, 23460,
24713, 28287, 28422, 30142, 36074, 23455, 34048, 31712, 20594, 26612,
33437, 23649, 34122, 32286, 33294, 20889, 23556, 25448, 36198, 26012,
29038, 31038, 32023, 32773, 35613, [12190, 36554], 36974, 34503, 37034,
20511, 21242, 23610, 26451, 28796, 29237, 37196, 37320, 37675, 33509,
23490, 24369, 24825, 20027, 21462, 23432, [12095, 25163], 26417, 27530,
29417, 29664, 31278, 33131, 36259, 37202, [12216, 39318], 20754, 21463,
21610, 23551, 25480, 27193, 32172, 38656, 22234, 21454, 21608, 23447,
23601, 24030, 20462, 24833, 25342, 27954, 31168, 31179, 32066, 32333,
32722, 33261, [12168, 33311], 33936, 34886, 35186, 35728, 36468, 36655,
36913, 37195, 37228, 38598, 37276, 20160, 20303, 20805, [12055, 21313],
24467, 25102, 26580, 27713, 28171, 29539, 32294, 37325, 37507, 21460,
22809, 23487, 28113, 31069, 32302, 31899, 22654, 29087, 20986, 34899,
36848, 20426, 23803, 26149, 30636, 31459, 33308, 39423, 20934, 24490,
26092, 26991, 27529, 28147, 28310, 28516, 30462, 32020, 24033, 36981,
37255, 38918, 20966, 21021, 25152, 26257, 26329, 28186, 24246, 32210,
32626, 26360, 34223, 34295, 35576, 21161, 21465, [12069, 22899], 24207,
24464, 24661, 37604, 38500, 20663, 20767, 21213, 21280, 21319, 21484,
21736, 21830, 21809, 22039, 22888, 22974, 23100, 23477, 23558,
[12073, 23567], 23569, 23578, 24196, 24202, 24288, 24432, 25215, 25220,
25307, 25484, 25463, 26119, 26124, 26157, 26230, 26494, 26786, 27167,
27189, 27836, 28040, 28169, 28248, 28988, 28966, 29031, 30151, 30465,
30813, 30977, 31077, 31216, 31456, 31505, 31911, 32057, 32918, 33750,
33931, 34121, 34909, 35059, 35359, 35388, 35412, 35443, 35937, 36062,
37284, 37478, 37758, 37912, 38556, 38808, 19978, 19976, 19998, 20055,
20887, 21104, 22478, 22580, 22732, 23330, 24120, 24773, 25854, 26465,
26454, 27972, 29366, 30067, 31331, 33976, 35698, 37304, 37664, 22065,
22516, 39166, 25325, 26893, 27542, 29165, 32340, 32887, [12170, 33394],
35302, [12215, 39135], 34645, 36785, 23611, 20280, 20449, 20405, 21767,
23072, 23517, 23529, [12092, 24515], 24910, 25391, 26032, 26187, 26862,
27035, 28024, 28145, 30003, 30137, 30495, 31070, 31206, 32051,
[12162, 33251], 33455, 34218, 35242, 35386, [12189, 36523], [12191, 36763],
36914, 37341, 38663, [12040, 20154], 20161, 20995, 22645, 22764, 23563,
29978, 23613, 33102, 35338, 36805, 38499, 38765, 31525, 35535, 38920,
37218, 22259, 21416, 36887, 21561, 22402, 24101, 25512, [12116, 27700],
28810, 30561, 31883, 32736, 34928, 36930, 37204, 37648, 37656, 38543,
29790, 39620, 23815, 23913, 25968, 26530, 36264, 38619, 25454, 26441,
26905, 33733, 38935, 38592, 35070, 28548, 25722, [12072, 23544], 19990,
28716, 30045, 26159, 20932, 21046, 21218, 22995, 24449, 24615, 25104,
25919, 25972, 26143, 26228, 26866, 26646, 27491, 28165, 29298,
[12131, 29983], 30427, 31934, 32854, 22768, 35069, [11972, 35199], 35488,
35475, 35531, 36893, 37266, [11992, 38738], 38745, [12011, 25993], 31246,
33030, 38587, 24109, 24796, 25114, 26021, 26132, 26512, [12143, 30707],
31309, 31821, 32318, 33034, 36012, [12186, 36196], 36321, 36447, 30889,
20999, 25305, 25509, 25666, 25240, 35373, 31363, 31680, 35500, 38634,
32118, [12166, 33292], 34633, 20185, 20808, 21315, 21344, 23459, 23554,
23574, 24029, 25126, 25159, 25776, 26643, 26676, 27849, 27973, 27927,
26579, 28508, 29006, 29053, 26059, 31359, 31661, 32218, 32330, 32680,
33146, [12167, 33307], 33337, 34214, 35438, 36046, 36341, 36984, 36983,
37549, 37521, 38275, 39854, 21069, 21892, 28472, 28982, 20840, 31109,
32341, 33203, 31950, 22092, 22609, 23720, 25514, 26366, 26365, 26970,
29401, 30095, 30094, 30990, 31062, 31199, 31895, 32032, 32068, 34311,
35380, 38459, 36961, [12239, 40736], 20711, 21109, 21452, 21474, 20489,
21930, 22766, 22863, 29245, 23435, 23652, 21277, 24803, 24819, 25436,
25475, 25407, 25531, 25805, 26089, 26361, 24035, 27085, 27133, 28437,
29157, 20105, 30185, 30456, 31379, 31967, 32207, 32156, 32865, 33609,
33624, 33900, 33980, 34299, 35013, [12187, 36208], 36865, 36973, 37783,
38684, 39442, 20687, 22679, 24974, 33235, 34101, 36104, 36896, 20419,
20596, 21063, 21363, 24687, 25417, 26463, 28204, [12188, 36275], 36895,
20439, 23646, 36042, 26063, 32154, 21330, 34966, 20854, 25539, 23384,
23403, 23562, 25613, 26449, 36956, 20182, 22810, 22826, 27760, 35409,
21822, 22549, 22949, 24816, 25171, 26561, 33333, 26965, 38464, 39364,
39464, 20307, 22534, 23550, 32784, 23729, 24111, 24453, 24608, 24907,
25140, 26367, 27888, 28382, 32974, 33151, 33492, 34955, 36024, 36864,
36910, 38538, 40667, 39899, 20195, 21488, [12068, 22823], 31532, 37261,
38988, 40441, 28381, 28711, 21331, 21828, 23429, 25176, 25246, 25299,
27810, 28655, 29730, 35351, 37944, 28609, 35582, 33592, 20967, 34552,
21482, 21481, 20294, 36948, [12192, 36784], 22890, 33073, 24061, 31466,
36799, 26842, [12181, 35895], 29432, 40008, 27197, 35504, 20025, 21336,
22022, 22374, 25285, 25506, 26086, 27470, 28129, 28251, 28845, 30701,
31471, 31658, 32187, 32829, 32966, 34507, 35477, 37723, 22243, 22727,
24382, 26029, 26262, 27264, 27573, 30007, 35527, 20516, 30693, 22320,
24347, 24677, 26234, 27744, 30196, 31258, 32622, 33268, 34584, 36933,
39347, 31689, 30044, [12149, 31481], 31569, 33988, 36880, 31209, 31378,
33590, 23265, 30528, 20013, 20210, 23449, 24544, 25277, 26172, 26609,
27880, [12173, 34411], 34935, 35387, 37198, 37619, 39376, 27159, 28710,
29482, 33511, 33879, 36015, 19969, 20806, 20939, 21899, 23541, 24086,
24115, 24193, 24340, 24373, 24427, 24500, 25074, 25361, 26274, 26397,
28526, 29266, 30010, 30522, 32884, 33081, 33144, 34678, 35519, 35548,
36229, 36339, 37530, [11985, 12199, 38263], 38914, [12227, 40165], 21189,
25431, 30452, 26389, 27784, 29645, 36035, 37806, 38515, 27941, 22684,
26894, 27084, 36861, 37786, 30171, 36890, 22618, 26626, 25524, 27131,
20291, 28460, 26584, 36795, 34086, 32180, 37716, 26943, 28528, 22378,
22775, 23340, 32044, [12118, 29226], 21514, 37347, 40372, 20141, 20302,
20572, 20597, 21059, 35998, 21576, 22564, 23450, 24093, 24213, 24237,
24311, 24351, 24716, 25269, 25402, 25552, 26799, 27712, 30855, 31118,
31243, 32224, 33351, 35330, 35558, 36420, 36883, 37048, 37165, 37336,
[12237, 40718], 27877, 25688, 25826, 25973, 28404, 30340, 31515, 36969,
37841, 28346, 21746, 24505, 25764, 36685, 36845, 37444, 20856, 22635,
22825, 23637, 24215, 28155, 32399, 29980, 36028, 36578, 39003, 28857,
20253, 27583, 28593, [12133, 30000], 38651, 20814, 21520, 22581, 22615,
22956, 23648, 24466, [12099, 26007], 26460, 28193, 30331, 33759, 36077,
36884, 37117, 37709, 30757, 30778, 21162, 24230, [12063, 22303], 22900,
24594, 20498, 20826, 20908, 20941, [12049, 20992], 21776, 22612, 22616,
22871, 23445, 23798, 23947, 24764, 25237, 25645, 26481, 26691, 26812,
26847, 30423, 28120, 28271, 28059, 28783, 29128, 24403, 30168, 31095,
31561, 31572, 31570, 31958, 32113, 21040, 33891, 34153, 34276, 35342,
35588, [12182, 35910], 36367, 36867, 36879, 37913, 38518, 38957, 39472,
38360, 20685, 21205, 21516, 22530, 23566, 24999, 25758, 27934, 30643,
31461, 33012, 33796, 36947, 37509, 23776, 40199, 21311, 24471, 24499,
28060, 29305, 30563, 31167, 31716, 27602, 29420, 35501, 26627, 27233,
20984, 31361, 26932, 23626, 40182, 33515, 23493, [12195, 37193], 28702,
22136, 23663, 24775, 25958, 27788, 35930, 36929, 38931, 21585, 26311,
37389, 22856, 37027, 20869, 20045, 20970, 34201, 35598, 28760, 25466,
37707, 26978, 39348, 32260, 30071, 21335, 26976, 36575, 38627, 27741,
[12038, 20108], 23612, 24336, 36841, 21250, 36049, [12161, 32905], 34425,
24319, [12103, 26085], 20083, [12042, 20837], 22914, 23615, 38894, 20219,
22922, 24525, 35469, 28641, 31152, 31074, 23527, 33905, 29483, 29105,
24180, 24565, 25467, 25754, 29123, 31896, 20035, 24316, 20043, 22492,
22178, 24745, 28611, 32013, 33021, 33075, 33215, 36786, 35223, 34468,
24052, 25226, 25773, 35207, 26487, 27874, 27966, 29750, 30772, 23110,
32629, 33453, [12218, 39340], 20467, 24259, 25309, 25490, 25943, 26479,
30403, 29260, 32972, 32954, 36649, 37197, 20493, 22521, 23186, 26757,
26995, 29028, 29437, 36023, 22770, 36064, 38506, 36889, 34687, 31204,
30695, 33833, 20271, 21093, 21338, 25293, 26575, 27850, [12137, 30333],
31636, 31893, 33334, 34180, 36843, 26333, 28448, 29190, 32283, 33707,
39361, [12008, 40614], 20989, 31665, 30834, 31672, 32903, 31560, 27368,
24161, 32908, 30033, 30048, [12043, 20843], 37474, 28300, 30330, 37271,
39658, 20240, 32624, 25244, 31567, 38309, 40169, 22138, 22617, 34532,
38588, 20276, 21028, 21322, 21453, 21467, 24070, 25644, 26001, 26495,
27710, 27726, 29256, 29359, 29677, 30036, 32321, 33324, 34281, 36009,
31684, [12196, 37318], 29033, 38930, 39151, 25405, 26217, 30058, 30436,
30928, 34115, 34542, 21290, 21329, 21542, 22915, 24199, 24444, 24754,
25161, 25209, 25259, 26000, [12112, 27604], 27852, 30130, [12138, 30382],
30865, 31192, 32203, 32631, 32933, 34987, 35513, 36027, 36991,
[12206, 38750], [12214, 39131], 27147, 31800, 20633, 23614, 24494, 26503,
27608, 29749, 30473, 32654, [12240, 40763], 26570, 31255, 21305,
[12134, 30091], 39661, 24422, 33181, 33777, 32920, 24380, 24517, 30050,
31558, 36924, 26727, 23019, 23195, 32016, 30334, 35628, 20469, 24426,
27161, 27703, 28418, 29922, 31080, 34920, 35413, 35961, 24287, 25551,
30149, 31186, 33495, 37672, 37618, 33948, 34541, 39981, 21697, 24428,
25996, 27996, 28693, 36007, 36051, 38971, 25935, 29942, 19981, 20184,
22496, 22827, 23142, 23500, 20904, 24067, 24220, 24598, 25206, 25975,
26023, 26222, 28014, [12119, 29238], 31526, 33104, 33178, 33433, 35676,
36000, 36070, 36212, [12201, 38428], 38468, 20398, 25771, 27494, 33310,
33889, 34154, 37096, 23553, 26963, [12213, 39080], 33914, 34135, 20239,
21103, 24489, 24133, 26381, 31119, 33145, 35079, 35206, 28149, 24343,
25173, 27832, 20175, 29289, 39826, 20998, 21563, 22132, 22707, 24996,
25198, 28954, 22894, 31881, 31966, 32027, 38640, [12098, 25991], 32862,
19993, 20341, 20853, 22592, 24163, 24179, 24330, 26564, 20006, 34109,
38281, 38491, [12150, 31859], [12212, 38913], 20731, 22721, 30294, 30887,
21029, 30629, 34065, 31622, 20559, 22793, [12122, 29255], 31687, 32232,
36794, 36820, 36941, 20415, 21193, 23081, 24321, 38829, 20445, 33303,
37610, 22275, 25429, 27497, 29995, 35036, 36628, 31298, 21215, 22675,
24917, 25098, 26286, [11935, 27597], 31807, 33769, 20515, 20472, 21253,
21574, 22577, 22857, 23453, 23792, 23791, 23849, 24214, 25265, 25447,
25918, [12101, 26041], 26379, 27861, 27873, 28921, 30770, 32299, 32990,
33459, 33804, 34028, 34562, 35090, 35370, 35914, 37030, 37586, 39165,
40179, 40300, 20047, 20129, 20621, 21078, 22346, 22952, 24125,
{f: 2, c: 24536}, 25151, 26292, 26395, 26576, 26834, 20882, 32033, 32938,
33192, 35584, 35980, 36031, 37502, 38450, 21536, 38956, 21271, 20693,
[12056, 21340], 22696, 25778, 26420, 29287, 30566, 31302, 37350, 21187,
27809, 27526, 22528, 24140, 22868, 26412, 32763, 20961, 30406, 25705,
30952, 39764, [12231, 40635], 22475, 22969, 26151, 26522, 27598, 21737,
27097, 24149, 33180, 26517, 39850, 26622, 40018, 26717, 20134, 20451,
[12060, 21448], 25273, 26411, 27819, 36804, 20397, 32365, 40639, 19975,
24930, 28288, 28459, 34067, 21619, 26410, 39749, [11922, 24051], 31637,
23724, 23494, 34588, 28234, 34001, 31252, 33032, 22937, 31885,
[11936, 27665], 30496, 21209, 22818, 28961, 29279, [12141, 30683], 38695,
40289, 26891, 23167, 23064, 20901, 21517, 21629, 26126, 30431, 36855,
37528, 40180, 23018, 29277, 28357, 20813, 26825, 32191, 32236,
[12207, 38754], 40634, 25720, 27169, 33538, 22916, 23391, [12113, 27611],
29467, 30450, 32178, 32791, 33945, 20786, [12106, 26408], 40665,
[12140, 30446], 26466, 21247, 39173, 23588, 25147, 31870, 36016, 21839,
24758, 32011, [12200, 38272], 21249, 20063, 20918, 22812, 29242, 32822,
37326, 24357, [12142, 30690], 21380, 24441, 32004, 34220, 35379, 36493,
38742, 26611, 34222, 37971, 24841, 24840, 27833, 30290, 35565, 36664,
21807, 20305, 20778, 21191, 21451, 23461, 24189, 24736, 24962, 25558,
26377, 26586, 28263, 28044, {f: 2, c: 29494}, 30001, 31056, 35029, 35480,
36938, [12194, 37009], 37109, 38596, 34701, [12067, 22805], 20104, 20313,
19982, 35465, 36671, 38928, 20653, 24188, 22934, 23481, 24248, 25562,
25594, 25793, 26332, 26954, 27096, 27915, 28342, 29076, [12132, 29992],
31407, [12154, 32650], 32768, 33865, 33993, 35201, 35617, 36362, 36965,
38525, 39178, 24958, 25233, 27442, 27779, 28020, 32716, 32764, 28096,
32645, 34746, 35064, 26469, 33713, 38972, 38647, 27931, 32097, 33853,
37226, 20081, 21365, 23888, 27396, 28651, 34253, 34349, 35239, 21033,
21519, 23653, 26446, 26792, 29702, 29827, 30178, 35023, 35041,
[12197, 37324], 38626, 38520, 24459, 29575, [12148, 31435], 33870, 25504,
30053, 21129, 27969, 28316, 29705, 30041, 30827, 31890, 38534,
[12015, 31452], [12243, 40845], 20406, 24942, 26053, 34396, 20102, 20142,
20698, 20001, 20940, 23534, 26009, 26753, 28092, 29471, 30274, 30637,
31260, 31975, 33391, 35538, 36988, 37327, 38517, 38936, [12050, 21147],
32209, 20523, 21400, 26519, 28107, 29136, 29747, 33256, 36650, 38563,
40023, 40607, 29792, 22593, 28057, 32047, 39006, 20196, 20278, 20363,
20919, 21169, 23994, 24604, 29618, 31036, 33491, 37428, 38583, 38646,
38666, 40599, 40802, 26278, 27508, 21015, 21155, 28872, 35010, 24265,
24651, 24976, 28451, 29001, 31806, 32244, 32879, 34030, 36899, 37676,
21570, 39791, 27347, 28809, 36034, 36335, 38706, 21172, 23105, 24266,
24324, 26391, 27004, 27028, 28010, 28431, 29282, 29436, 31725,
[12156, 32769], 32894, 34635, 37070, 20845, 40595, 31108, 32907, 37682,
35542, 20525, 21644, 35441, 27498, 36036, 33031, 24785, 26528, 40434,
20121, 20120, 39952, 35435, 34241, 34152, 26880, 28286, 30871, 33109,
24332, 19984, 19989, 20010, 20017, [12034, 20022], 20028, [12035, 20031],
20034, 20054, 20056, 20098, [12037, 20101], 35947, 20106, 33298, 24333,
20110, {f: 2, c: 20126}, [12039, 20128], 20130, 20144, 20147, 20150, 20174,
20173, 20164, 20166, 20162, 20183, 20190, 20205, 20191, 20215, 20233,
20314, 20272, 20315, 20317, 20311, 20295, 20342, 20360, 20367, 20376,
20347, 20329, 20336, 20369, 20335, 20358, 20374, 20760, 20436, 20447,
20430, 20440, 20443, 20433, 20442, 20432, {f: 2, c: 20452}, 20506, 20520,
20500, 20522, 20517, 20485, 20252, 20470, 20513, 20521, 20524, 20478,
20463, 20497, 20486, 20547, 20551, 26371, 20565, 20560, 20552, 20570,
20566, 20588, 20600, 20608, 20634, 20613, 20660, 20658, {f: 2, c: 20681},
20659, 20674, 20694, 20702, 20709, 20717, 20707, 20718, 20729, 20725,
20745, {f: 2, c: 20737}, 20758, 20757, 20756, 20762, 20769, 20794, 20791,
20796, 20795, [12041, 20799], [11918, 20800], 20818, 20812, 20820, 20834,
31480, {f: 2, c: 20841}, 20846, 20864, [12044, 20866], 22232, 20876, 20873,
20879, 20881, 20883, 20885, [12045, 20886], 20900, 20902, 20898,
{f: 2, c: 20905}, [12046, 20907], 20915, {f: 2, c: 20913}, 20912, 20917,
20925, 20933, 20937, 20955, [12047, 20960], 34389, 20969, 20973, 20976,
[12048, 20981], 20990, 20996, 21003, 21012, 21006, 21031, 21034, 21038,
21043, 21049, 21071, 21060, {f: 2, c: 21067}, 21086, 21076, 21098, 21108,
21097, 21107, 21119, 21117, 21133, 21140, 21138, 21105, 21128, 21137,
36776, 36775, {f: 2, c: 21164}, 21180, 21173, 21185, 21197, 21207, 21214,
21219, 21222, 39149, 21216, 21235, 21237, 21240, [12051, 21241], 21254,
21256, 30008, 21261, 21264, 21263, [12052, 21269], [12053, 21274], 21283,
21295, 21297, 21299, [12054, 21304], 21312, 21318, 21317, 19991, 21321,
21325, 20950, 21342, [12057, 21353], 21358, 22808, 21371, 21367,
[12058, 21378], 21398, 21408, 21414, 21413, 21422, 21424, [12059, 21430],
21443, 31762, 38617, 21471, 26364, 29166, 21486, 21480, 21485, 21498,
21505, 21565, 21568, {f: 2, c: 21548}, 21564, 21550, 21558, 21545, 21533,
21582, 21647, 21621, 21646, 21599, 21617, 21623, 21616, 21650, 21627,
21632, 21622, 21636, 21648, 21638, 21703, 21666, 21688, 21669, 21676,
21700, 21704, 21672, 21675, 21698, 21668, 21694, 21692, 21720,
{f: 2, c: 21733}, 21775, 21780, 21757, 21742, 21741, 21754, 21730, 21817,
21824, 21859, 21836, 21806, 21852, 21829, {f: 2, c: 21846}, 21816, 21811,
21853, 21913, 21888, 21679, 21898, 21919, 21883, 21886, 21912, 21918,
21934, 21884, 21891, 21929, 21895, 21928, 21978, 21957, 21983, 21956,
21980, 21988, 21972, 22036, 22007, 22038, 22014, 22013, 22043, 22009,
22094, 22096, 29151, 22068, 22070, 22066, 22072, 22123, 22116, 22063,
22124, 22122, 22150, 22144, 22154, 22176, 22164, 22159, 22181, 22190,
22198, 22196, 22210, 22204, 22209, 22211, 22208, 22216, 22222, 22225,
22227, [12062, 22231], 22254, 22265, 22272, 22271, 22276, 22281, 22280,
22283, 22285, 22291, 22296, 22294, 21959, 22300, 22310, {f: 2, c: 22327},
22350, 22331, 22336, 22351, 22377, 22464, 22408, 22369, 22399, 22409,
22419, 22432, 22451, 22436, 22442, 22448, 22467, 22470, 22484,
{f: 2, c: 22482}, 22538, 22486, 22499, 22539, 22553, 22557, 22642, 22561,
22626, 22603, 22640, 27584, 22610, 22589, 22649, 22661, 22713, 22687,
22699, 22714, 22750, 22715, 22712, 22702, 22725, 22739, 22737, 22743,
22745, 22744, 22757, 22748, 22756, 22751, 22767, 22778, 22777,
{f: 3, c: 22779}, [12065, 22786], [12066, 22794], 22800, 22811, 26790,
22821, {f: 2, c: 22828}, 22834, 22840, 22846, 31442, 22869, 22864, 22862,
22874, 22872, 22882, 22880, 22887, 22892, 22889, 22904, 22913, 22941,
20318, 20395, 22947, 22962, 22982, 23016, 23004, 22925, {f: 2, c: 23001},
23077, 23071, 23057, 23068, 23049, 23066, 23104, 23148, 23113,
{f: 2, c: 23093}, 23138, 23146, 23194, 23228, 23230, 23243, 23234, 23229,
23267, 23255, 23270, 23273, 23254, {f: 2, c: 23290}, 23308, 23307, 23318,
23346, 23248, 23338, 23350, 23358, 23363, 23365, 23360, 23377, 23381,
{f: 2, c: 23386}, 23397, 23401, 23408, 23411, 23413, 23416, 25992, 23418,
[12071, 23424], 23427, 23462, 23480, 23491, 23495, 23497, 23508, 23504,
23524, 23526, 23522, 23518, 23525, 23531, 23536, 23542, 23539, 23557,
{f: 2, c: 23559}, 23565, 23571, 23584, [11920, 12074, 23586], 23592,
[12075, 23608], 23609, 23617, 23622, 23630, 23635, 23632, 23631, 23409,
23660, [12076, 23662], 20066, 23670, 23673, 23692, 23697, 23700, 22939,
23723, 23739, 23734, 23740, 23735, 23749, 23742, 23751, 23769, 23785,
23805, 23802, 23789, 23948, 23786, 23819, 23829, 23831, 23900, 23839,
23835, 23825, 23828, 23842, 23834, 23833, 23832, 23884, 23890, 23886,
23883, 23916, 23923, 23926, 23943, 23940, 23938, 23970, 23965, 23980,
23982, 23997, 23952, 23991, 23996, 24009, 24013, 24019, 24018, 24022,
[12078, 24027], 24043, 24050, 24053, 24075, 24090, 24089, 24081, 24091,
{f: 2, c: 24118}, 24132, 24131, 24128, 24142, 24151, 24148, 24159, 24162,
24164, 24135, {f: 2, c: 24181}, [11923, 12083, 24186], 40636,
[12084, 24191], 24224, {f: 2, c: 24257}, 24264, 24272, 24271, 24278, 24291,
24285, {f: 2, c: 24282}, 24290, 24289, {f: 2, c: 24296}, 24300, 24305,
24307, 24304, [12085, 24308], 24312, [12086, 24318], 24323, 24329, 24413,
24412, [12087, 24331], 24337, 24342, 24361, 24365, 24376, 24385, 24392,
24396, 24398, 24367, [11924, 24401], {f: 2, c: 24406}, 24409,
[12090, 24417], 24429, [12091, 24435], 24439, 24451, 24450, 24447, 24458,
24456, 24465, 24455, 24478, 24473, 24472, 24480, 24488, 24493, 24508,
24534, 24571, 24548, 24568, 24561, 24541, 24755, 24575, 24609, 24672,
24601, 24592, 24617, 24590, 24625, 24603, 24597, 24619, 24614, 24591,
24634, 24666, 24641, 24682, 24695, 24671, 24650, 24646, 24653, 24675,
24643, 24676, 24642, 24684, 24683, 24665, 24705, 24717, 24807, 24707,
24730, 24708, 24731, {f: 2, c: 24726}, 24722, 24743, 24715, 24801, 24760,
24800, 24787, 24756, 24560, 24765, 24774, 24757, 24792, 24909, 24853,
24838, {f: 2, c: 24822}, 24832, 24820, 24826, 24835, 24865, 24827, 24817,
{f: 2, c: 24845}, 24903, 24894, 24872, 24871, 24906, 24895, 24892, 24876,
24884, 24893, 24898, 24900, 24947, 24951, {f: 3, c: 24920}, 24939, 24948,
24943, 24933, 24945, 24927, 24925, 24915, 24949, 24985, 24982, 24967,
25004, 24980, 24986, 24970, 24977, 25003, 25006, 25036, 25034, 25033,
25079, 25032, 25027, 25030, 25018, 25035, 32633, 25037, 25062, 25059,
25078, 25082, 25076, 25087, 25085, 25084, 25086, 25088, [12093, 25096],
25097, 25101, 25100, 25108, 25115, 25118, 25121, 25130, 25134, 25136,
{f: 2, c: 25138}, 25153, 25166, 25182, 25187, 25179, 25184, 25192, 25212,
25218, 25225, 25214, {f: 2, c: 25234}, 25238, 25300, 25219, 25236, 25303,
25297, 25275, 25295, 25343, 25286, 25812, 25288, 25308, 25292, 25290,
25282, 25287, 25243, 25289, 25356, 25326, 25329, 25383, 25346, 25352,
25327, 25333, 25424, 25406, 25421, 25628, 25423, 25494, 25486, 25472,
25515, 25462, 25507, 25487, 25481, 25503, 25525, 25451, 25449, 25534,
25577, 25536, 25542, 25571, 25545, 25554, 25590, 25540, 25622, 25652,
25606, 25619, 25638, 25654, 25885, 25623, 25640, 25615, 25703, 25711,
25718, 25678, 25898, 25749, 25747, 25765, 25769, 25736, 25788, 25818,
25810, 25797, 25799, 25787, 25816, 25794, 25841, 25831, 33289,
{f: 2, c: 25824}, 25260, 25827, 25839, 25900, 25846, 25844, 25842, 25850,
25856, 25853, 25880, 25884, 25861, 25892, 25891, 25899, [12097, 25908],
[11929, 25909], 25911, 25910, 25912, 30027, 25928, 25942, 25941, 25933,
25944, 25950, 25949, 25970, 25976, {f: 2, c: 25986}, 35722, 26011, 26015,
26027, 26039, 26051, 26054, 26049, 26052, 26060, 26066, 26075, 26073,
[12102, 26080], [11931, 26081], 26097, 26482, 26122, 26115, 26107, 26483,
{f: 2, c: 26165}, 26164, 26140, 26191, 26180, 26185, 26177, 26206, 26205,
26212, {f: 2, c: 26215}, 26207, 26210, 26224, 26243, 26248, 26254, 26249,
26244, 26264, 26269, 26305, 26297, 26313, 26302, 26300, 26308, 26296,
26326, 26330, 26336, 26175, 26342, 26345, [12104, 26352], 26357, 26359,
26383, 26390, 26398, {f: 2, c: 26406}, 38712, 26414, 26431, 26422, 26433,
26424, 26423, 26438, 26462, 26464, 26457, {f: 2, c: 26467}, 26505, 26480,
26537, 26492, 26474, 26508, 26507, 26534, 26529, 26501, 26551, 26607,
26548, 26604, 26547, 26601, 26552, 26596, 26590, 26589, 26594, 26606,
26553, 26574, 26566, 26599, 27292, 26654, 26694, 26665, 26688, 26701,
26674, 26702, 26803, 26667, 26713, 26723, 26743, 26751, 26783, 26767,
26797, 26772, 26781, 26779, 26755, 27310, 26809, 26740, 26805, 26784,
26810, 26895, 26765, 26750, 26881, 26826, 26888, 26840, 26914, 26918,
26849, 26892, 26829, 26836, 26855, 26837, 26934, 26898, 26884, 26839,
26851, 26917, 26873, 26848, 26863, 26920, 26922, 26906, 26915, 26913,
26822, 27001, 26999, 26972, 27000, 26987, 26964, 27006, 26990, 26937,
26996, 26941, 26969, 26928, 26977, 26974, 26973, 27009, 26986, 27058,
27054, 27088, 27071, 27073, 27091, 27070, 27086, 23528, 27082, 27101,
27067, 27075, 27047, 27182, 27025, 27040, 27036, 27029, 27060, 27102,
27112, 27138, 27163, 27135, 27402, 27129, 27122, 27111, 27141, 27057,
27166, 27117, 27156, 27115, 27146, 27154, 27329, 27171, 27155, 27204,
27148, 27250, 27190, 27256, 27207, 27234, 27225, 27238, 27208, 27192,
27170, 27280, 27277, 27296, 27268, {f: 2, c: 27298}, 27287, 34327, 27323,
27331, 27330, 27320, 27315, 27308, 27358, 27345, 27359, 27306, 27354,
27370, 27387, 27397, 34326, 27386, 27410, 27414, 39729, 27423, 27448,
27447, 30428, 27449, 39150, 27463, 27459, 27465, 27472, 27481, 27476,
27483, 27487, 27489, 27512, [12109, 27513], {f: 2, c: 27519}, 27524, 27523,
27533, 27544, 27541, 27550, 27556, {f: 2, c: 27562}, 27567, 27570, 27569,
[12110, 27571], 27575, 27580, 27590, [12111, 27595], 27603, 27615, 27628,
27627, 27635, 27631, 40638, 27656, 27667, [12115, 27668], 27675, 27684,
27683, 27742, 27733, 27746, 27754, 27778, 27789, 27802, 27777, 27803,
27774, 27752, 27763, 27794, 27792, 27844, 27889, 27859, 27837, 27863,
27845, 27869, 27822, 27825, 27838, 27834, 27867, 27887, 27865, 27882,
27935, 34893, 27958, 27947, 27965, 27960, 27929, 27957, 27955, 27922,
27916, 28003, 28051, 28004, 27994, 28025, 27993, 28046, 28053, 28644,
28037, 28153, 28181, 28170, 28085, 28103, 28134, 28088, 28102, 28140,
28126, 28108, 28136, 28114, 28101, 28154, 28121, 28132, 28117, 28138,
28142, 28205, 28270, 28206, 28185, 28274, 28255, 28222, 28195, 28267,
28203, 28278, 28237, 28191, 28227, 28218, 28238, 28196, 28415, 28189,
28216, 28290, 28330, 28312, 28361, 28343, 28371, 28349, 28335, 28356,
28338, {f: 2, c: 28372}, 28303, 28325, 28354, 28319, 28481, 28433, 28748,
28396, 28408, 28414, 28479, 28402, 28465, 28399, 28466, 28364, 28478,
28435, 28407, 28550, 28538, 28536, 28545, 28544, 28527, 28507, 28659,
28525, 28546, 28540, 28504, 28558, 28561, 28610, 28518, 28595, 28579,
28577, 28580, 28601, 28614, 28586, 28639, 28629, 28652, 28628, 28632,
28657, 28654, 28635, 28681, 28683, 28666, 28689, 28673, 28687, 28670,
28699, 28698, 28532, 28701, 28696, 28703, 28720, 28734, 28722, 28753,
28771, 28825, 28818, 28847, 28913, 28844, 28856, 28851, 28846, 28895,
28875, 28893, 28889, 28937, 28925, 28956, 28953, 29029, 29013, 29064,
29030, 29026, 29004, 29014, 29036, 29071, 29179, 29060, 29077, 29096,
29100, 29143, 29113, 29118, 29138, 29129, 29140, 29134, 29152, 29164,
29159, 29173, 29180, 29177, 29183, 29197, 29200, 29211, 29224, 29229,
29228, 29232, 29234, [12120, 29243], 29244, [12121, 29247], 29248, 29254,
29259, 29272, 29300, 29310, 29314, 29313, 29319, 29330, 29334, 29346,
29351, 29369, 29362, 29379, 29382, 29380, 29390, 29394, 29410,
{f: 2, c: 29408}, 29433, 29431, 20495, 29463, 29450, 29468, 29462, 29469,
29492, 29487, 29481, 29477, 29502, {f: 2, c: 29518}, 40664, 29527, 29546,
29544, 29552, 29560, 29557, 29563, 29562, 29640, 29619, 29646, 29627,
29632, 29669, 29678, 29662, 29858, 29701, 29807, 29733, 29688, 29746,
29754, 29781, 29759, 29791, 29785, 29761, 29788, 29801, 29808, 29795,
29802, 29814, 29822, 29835, 29854, 29863, 29898, 29903, 29908, 29681,
29920, 29923, 29927, 29929, 29934, 29938, {f: 2, c: 29936}, 29944, 29943,
29956, 29955, 29957, 29964, 29966, 29965, 29973, 29971, 29982, 29990,
29996, 30012, 30020, 30029, 30026, 30025, 30043, 30022, 30042, 30057,
30052, 30055, 30059, 30061, 30072, 30070, {f: 2, c: 30086}, 30068, 30090,
30089, 30082, 30100, 30106, 30109, 30117, 30115, 30146, 30131, 30147,
30133, 30141, 30136, 30140, 30129, 30157, 30154, 30162, 30169, 30179,
30174, {f: 2, c: 30206}, 30204, 30209, 30192, 30202, {f: 2, c: 30194},
30219, 30221, 30217, 30239, 30247, {f: 3, c: 30240}, 30244, 30260, 30256,
30267, {f: 2, c: 30279}, 30278, 30300, 30296, {f: 2, c: 30305},
{f: 3, c: 30312}, 30311, 30316, 30320, 30322, [12136, 30326], 30328, 30332,
30336, 30339, 30344, 30347, 30350, 30358, 30355, {f: 2, c: 30361}, 30384,
30388, {f: 3, c: 30392}, 30402, 30413, 30422, 30418, 30430, 30433, 30437,
30439, 30442, 34351, 30459, 30472, 30471, 30468, 30505, 30500, 30494,
33897, 33862, 33836, 33903, 33913, 33845, 33994, 33890, 33977, 33983,
33951, 34009, 33997, 33979, 34010, 34000, 33985, 33990, 34006, 33953,
34081, 34047, 34036, {f: 2, c: 34071}, 34092, 34079, 34069, 34068, 34044,
34112, 34147, 34136, 34120, 34113, 34306, 34123, 34133, 34176, 34212,
34184, 34193, 34186, 34216, 34157, 34196, 34203, 34282, 34183, 34204,
34167, 34174, 34192, 34249, 34234, 34255, 34233, 34256, 34261, 34269,
34277, 34268, 34297, 34314, 34323, 34315, 34302, 34298, 34310, 34338,
34330, 34352, 34367, [12172, 34381], 20053, 34388, 34399, 34407, 34417,
34451, 34467, {f: 2, c: 34473}, {f: 2, c: 34443}, 34486, 34479, 34500,
34502, 34480, 34505, 34851, 34475, 34516, 34526, 34537, 34540, 34527,
34523, 34543, 34578, 34566, 34568, 34560, 34563, 34555, 34577, 34569,
34573, 34553, 34570, 34612, 34623, 34615, 34619, 34597, 34601, 34586,
34656, 34655, 34680, 34636, 34638, 34676, 34647, 34664, 34670, 34649,
34643, 34659, 34666, 34821, 34722, 34719, 34690, 34735, 34763, 34749,
34752, 34768, 38614, 34731, 34756, 34739, 34759, 34758, 34747, 34799,
34802, 34784, 34831, 34829, 34814, {f: 2, c: 34806}, 34830, 34770, 34833,
34838, 34837, 34850, 34849, 34865, 34870, 34873, 34855, 34875, 34884,
34882, 34898, 34905, 34910, 34914, 34923, 34945, 34942, 34974, 34933,
34941, 34997, 34930, 34946, 34967, 34962, 34990, 34969, 34978, 34957,
34980, 34992, 35007, 34993, {f: 2, c: 35011}, 35028, {f: 2, c: 35032},
35037, 35065, 35074, 35068, 35060, 35048, 35058, 35076, 35084, 35082,
35091, 35139, 35102, 35109, {f: 2, c: 35114}, 35137, 35140, 35131, 35126,
35128, 35148, 35101, 35168, 35166, 35174, 35172, 35181, 35178, 35183,
35188, 35191, [12177, 35198], 35203, 35208, 35210, 35219, 35224, 35233,
35241, 35238, 35244, 35247, 35250, 35258, 35261, {f: 2, c: 35263}, 35290,
{f: 2, c: 35292}, 35303, 35316, 35320, 35331, 35350, 35344, 35340, 35355,
35357, 35365, 35382, 35393, 35419, 35410, 35398, 35400, 35452, 35437,
35436, 35426, 35461, 35458, 35460, 35496, 35489, 35473, {f: 2, c: 35493},
35482, 35491, 35524, 35533, 35522, 35546, 35563, 35571, 35559, 35556,
35569, 35604, 35552, 35554, 35575, 35550, 35547, 35596, 35591, 35610,
35553, 35606, 35600, 35607, 35616, 35635, 38827, 35622, 35627, 35646,
35624, 35649, 35660, 35663, 35662, 35657, 35670, 35675, 35674, 35691,
35679, 35692, 35695, 35700, 35709, 35712, 35724, 35726, {f: 2, c: 35730},
35734, {f: 2, c: 35737}, 35898, 35905, 35903, 35912, 35916, 35918, 35920,
[12183, 35925], 35938, 35948, [12184, 35960], 35962, 35970, 35977, 35973,
35978, {f: 2, c: 35981}, 35988, 35964, 35992, 25117, 36013, 36010, 36029,
{f: 2, c: 36018}, 36014, 36022, 36040, 36033, 36068, 36067, 36058, 36093,
{f: 2, c: 36090}, {f: 2, c: 36100}, 36106, 36103, 36111, 36109, 36112,
40782, 36115, 36045, 36116, 36118, 36199, 36205, 36209, 36211, 36225,
36249, 36290, 36286, 36282, 36303, 36314, 36310, 36300, 36315, 36299,
{f: 2, c: 36330}, 36319, 36323, 36348, {f: 2, c: 36360}, 36351,
{f: 2, c: 36381}, 36368, 36383, 36418, 36405, 36400, 36404, 36426, 36423,
36425, 36428, 36432, 36424, 36441, 36452, 36448, 36394, 36451, 36437,
36470, 36466, 36476, 36481, 36487, 36485, 36484, 36491, 36490, 36499,
36497, 36500, 36505, 36522, 36513, 36524, 36528, 36550, 36529, 36542,
36549, 36552, 36555, 36571, 36579, 36604, 36603, 36587, 36606, 36618,
36613, 36629, 36626, 36633, 36627, 36636, 36639, 36635, 36620, 36646,
36659, 36667, 36665, 36677, 36674, 36670, 36684, 36681, 36678, 36686,
36695, 36700, {f: 3, c: 36706}, 36764, 36767, 36771, 36781, 36783, 36791,
36826, 36837, 36834, 36842, 36847, 36999, 36852, 36869, {f: 2, c: 36857},
36881, 36885, 36897, 36877, 36894, 36886, 36875, 36903, 36918, 36917,
36921, 36856, {f: 4, c: 36943}, 36878, 36937, 36926, 36950, 36952, 36958,
36968, 36975, 36982, 38568, 36978, 36994, 36989, 36993, 36992, 37002,
37001, 37007, 37032, 37039, 37041, 37045, 37090, 37092, 25160, 37083,
37122, 37138, 37145, 37170, 37168, 37194, 37206, 37208, 37219, 37221,
37225, 37235, 37234, 37259, 37257, 37250, 37282, 37291, 37295, 37290,
37301, 37300, 37306, {f: 2, c: 37312}, 37321, 37323, 37328, 37334, 37343,
37345, 37339, 37372, {f: 2, c: 37365}, 37406, 37375, 37396, 37420, 37397,
37393, 37470, 37463, 37445, 37449, 37476, 37448, 37525, 37439, 37451,
37456, 37532, 37526, 37523, 37531, 37466, 37583, 37561, 37559, 37609,
37647, 37626, 37700, 37678, 37657, 37666, 37658, 37667, 37690, 37685,
37691, 37724, 37728, 37756, 37742, 37718, 37808, {f: 2, c: 37804}, 37780,
37817, {f: 2, c: 37846}, 37864, 37861, 37848, 37827, 37853, 37840, 37832,
37860, 37914, 37908, 37907, 37891, 37895, 37904, 37942, 37931, 37941,
37921, 37946, 37953, 37970, 37956, 37979, 37984, 37986, 37982, 37994,
37417, 38000, 38005, 38007, 38013, 37978, 38012, 38014, 38017, 38015,
38274, 38279, 38282, 38292, 38294, {f: 2, c: 38296}, 38304, 38312, 38311,
38317, 38332, 38331, 38329, 38334, 38346, 28662, 38339, 38349, 38348,
38357, 38356, 38358, 38364, 38369, 38373, 38370, 38433, 38440,
{f: 2, c: 38446}, 38466, 38476, 38479, 38475, 38519, 38492, 38494, 38493,
38495, 38502, 38514, 38508, 38541, 38552, 38549, 38551, 38570, 38567,
{f: 2, c: 38577}, 38576, 38580, [12202, 38582], 38584, [12203, 38585],
38606, 38603, 38601, 38605, 35149, 38620, 38669, 38613, 38649, 38660,
38662, 38664, 38675, 38670, 38673, 38671, 38678, 38681, 38692, 38698,
38704, 38713, {f: 2, c: 38717}, 38724, 38726, 38728, 38722, 38729, 38748,
38752, 38756, 38758, 38760, 21202, 38763, 38769, 38777, 38789, 38780,
38785, 38778, 38790, 38795, {f: 2, c: 38799}, 38812, 38824, 38822, 38819,
{f: 2, c: 38835}, 38851, 38854, 38856, [12209, 38859], 38876,
[12210, 38893], 40783, 38898, 31455, 38902, 38901, 38927, 38924, 38968,
38948, 38945, 38967, 38973, 38982, 38991, 38987, 39019, {f: 3, c: 39023},
39028, 39027, 39082, 39087, 39089, 39094, 39108, 39107, 39110, 39145,
39147, 39171, 39177, 39186, 39188, 39192, 39201, {f: 2, c: 39197}, 39204,
39200, 39212, 39214, {f: 2, c: 39229}, 39234, 39241, 39237, 39248, 39243,
{f: 2, c: 39249}, 39244, 39253, {f: 2, c: 39319}, 39333, {f: 2, c: 39341},
39356, 39391, 39387, 39389, 39384, 39377, {f: 2, c: 39405},
{f: 2, c: 39409}, 39419, 39416, 39425, 39439, 39429, 39394, 39449, 39467,
39479, 39493, 39490, 39488, 39491, 39486, 39509, 39501, 39515, 39511,
39519, 39522, 39525, 39524, 39529, 39531, 39530, 39597, 39600, 39612,
39616, 39631, 39633, {f: 2, c: 39635}, 39646, [12221, 39647],
{f: 2, c: 39650}, 39654, 39663, 39659, 39662, 39668, 39665, 39671, 39675,
39686, 39704, 39706, 39711, {f: 2, c: 39714}, [12222, 39717],
{f: 4, c: 39719}, 39726, [12223, 39727], [12224, 39730], 39748, 39747,
39759, {f: 2, c: 39757}, 39761, 39768, 39796, 39827, 39811, 39825,
{f: 2, c: 39830}, {f: 2, c: 39839}, 39848, 39860, 39872, 39882, 39865,
39878, 39887, {f: 2, c: 39889}, 39907, 39906, 39908, 39892, 39905, 39994,
39922, 39921, 39920, 39957, 39956, 39945, 39955, 39948, 39942, 39944,
39954, 39946, 39940, 39982, 39963, 39973, 39972, 39969, 39984, 40007,
39986, 40006, 39998, 40026, 40032, 40039, 40054, 40056, 40167, 40172,
40176, 40201, 40200, 40171, 40195, 40198, 40234, 40230, 40367, 40227,
40223, 40260, 40213, 40210, 40257, 40255, 40254, 40262, 40264,
{f: 2, c: 40285}, 40292, 40273, 40272, 40281, 40306, 40329, 40327, 40363,
40303, 40314, 40346, 40356, 40361, 40370, 40388, 40385, 40379, 40376,
40378, 40390, 40399, 40386, 40409, 40403, 40440, 40422, 40429, 40431,
40445, {f: 2, c: 40474}, 40478, [12228, 40565], 40569, 40573, 40577, 40584,
{f: 2, c: 40587}, 40594, 40597, 40593, 40605, [12230, 40613], 40617, 40632,
40618, 40621, 38753, 40652, {f: 3, c: 40654}, 40660, 40668, 40670, 40669,
40672, 40677, 40680, 40687, 40692, {f: 2, c: 40694}, [12235, 40697],
{f: 2, c: 40699}, [12236, 40701], {f: 2, c: 40711}, 30391, 40725, 40737,
40748, 40766, [12241, 40778], [12242, 40786], 40788, 40803,
{f: 3, c: 40799}, {f: 2, c: 40806}, 40812, 40810, 40823, 40818, 40822,
40853, [12244, 40860], [12245, 40864], 22575, 27079, 36953, 29796, 0,
{f: 76, c: 9472}, {f: 20, c: 9312}, {f: 10, c: 8544}, 13129, 13076, 0,
13133, 0, 13095, 0, 13110, 13137, 0, 13069, 13094, 0, 13099, 13130, 0,
{f: 3, c: 13212}, {f: 2, c: 13198}, 13252, 13217, 12317, 12319, 8470,
13261, 0, {f: 5, c: 12964}, {f: 2, c: 12849}, 12857, 13182, 13181, 13180,
8750, 8721, {s: 3}, 8735, 8895, 0, 0, 21854, {s: 7}, 167133, 0, 0, 28976,
0, 40407, {s: 4}, 64054, 0, 0, 22169, 15694, {s: 4}, 20448, 0, 0, 36544, 0,
194797, {s: 4}, 153716, 32363, 33606, 167670, {s: 3}, 40572, 0, 0, 26171,
0, 40628, {s: 4}, 26629, {s: 5}, 23650, 0, 194780, 0, 32353, 0, 0, 64070,
{s: 5}, 34083, 37292, {s: 7}, 34796, {s: 8}, 25620, 0, 0, 39506, {s: 4},
64074, 0, 194692, {s: 4}, 31774, {s: 6}, 64016, 25681, 0, 0, 63980, 22625,
39002, 0, 194679, {s: 3}, 31153, 0, 28678, {s: 9}, 22218, {s: 3}, 21085, 0,
28497, 37297, {s: 10}, 64106, {s: 6}, 38960, 0, 40629, {s: 9}, 33802,
63939, {f: 2, c: 63890}, 63897, 0, 34847, 194575, 0, 194771, 194584,
{s: 7}, 137754, 23643, {s: 4}, 25890, 0, 0, 26618, 0, 26766, 0, 148432,
194848, {s: 21}, 34110, {s: 15}, 30562, {s: 12}, 65075, 0,
{f: 2, c: 65073}, {s: 4}, 65072, {f: 2, c: 65077}, {f: 2, c: 65081}, 0, 0,
{f: 2, c: 65079}, {f: 2, c: 65087}, {f: 2, c: 65085}, {f: 4, c: 65089},
{f: 2, c: 65083}, {s: 41}, {f: 3, c: 12436}, 0, 0, 22099, {s: 41}, 65508,
65287, 65282, 0, 9665, 9655, 8681, 8679, 8678, 8680, 9634, 9831, 9825,
9828, 9826, 13216, 13218, {f: 2, c: 13220}, 13207, 8467, 13208, 13235,
13234, 13233, 13232, {f: 3, c: 13189}, 13259, 13200, 13268, 13206, 13090,
13078, 13080, 13077, 13059, 13091, 13143, 13122, 13113, 13115, 13056,
13105, 13127, 13086, 13098, 0, 13183, 8481, 9742, 12342, 12320, {s: 3},
{f: 9, c: 9352}, {f: 20, c: 9332}, 12881, {f: 10, c: 8560},
{f: 10, c: 12882}, {f: 26, c: 9372}, 12867, 12861, 12863, 12852, 12856,
12851, 12860, 12866, 12862, 12854, 12853, 12859, 12864, 12858, 12976,
12973, 12969, 12975, 12948, 12970, 12952, 12971, 12946, 12945, 12947,
12972, 12974, 12950, {s: 8}, {f: 3, c: 9131}, 0, {f: 3, c: 9127}, 0, 13260,
13061, 0, 0, 13215, 13219, 13222, 0, 0, 12958, {f: 2, c: 13192}, 13256,
8749, 0, 12848, {f: 6, c: 12842}, 12855, 12865, 10145, {s: 3}, 9673, 9824,
9829, 9827, 9830, {f: 4, c: 9728}, 9758, {f: 2, c: 9756}, 9759, 12953,
9450, {f: 2, c: 8554}, {s: 3}, {f: 8, c: 9601}, 9615, 9614, 9613, 9612,
9611, 9610, 9609, {f: 2, c: 9620}, {f: 2, c: 9581}, 9584, 9583, 9552, 9566,
9578, 9569, {f: 2, c: 9698}, 9701, 9700, 0, 0, {f: 3, c: 9585}, {s: 20},
20956, 29081, {f: 9, c: 10102}, {s: 3}, {f: 2, c: 8570}, {s: 3}, 8575,
8458, 8457, 0, 0, 12292, 8646, {f: 2, c: 8644}, 0, {f: 4, c: 12535}, 0, 0,
12957, {s: 3}, 13179, {s: 3}, 13107, 13134, {s: 30}, 32394, 35100, 37704,
37512, 34012, 20425, 28859, 26161, 26824, 37625, 26363, 24389,
[12033, 20008], 20193, 20220, 20224, 20227, 20281, 20310, 20370, 20362,
20378, 20372, 20429, 20544, 20514, 20479, 20510, 20550, 20592, 20546,
20628, 20724, 20696, 20810, 20836, 20893, 20926, 20972, 21013, 21148,
21158, 21184, 21211, 21248, 0, 21284, 21362, 21395, 21426, 21469, 64014,
21660, 21642, 21673, 21759, 21894, 22361, 22373, 22444, 22472, 22471,
64015, 0, 22686, 22706, 22795, 22867, 22875, 22877, 22883, 22948, 22970,
23382, 23488, 29999, 23512, 0, 23582, 23718, 23738, 23797, 23847, 23891, 0,
23874, 23917, {f: 2, c: 23992}, 24016, 24353, 24372, 24423, 24503, 24542,
24669, 24709, 24714, 24798, 24789, 24864, 24818, 24849, 24887, 24880,
24984, 25107, 25254, 25589, 25696, 25757, 25806, 25934, 26112, 26133,
26121, 26158, 0, 26148, 26213, 26199, 26201, 64018, 26227, 26265, 26272,
26290, 26303, 26362, 26382, 0, 26470, 26555, 26706, 26560, 0, 26692, 26831,
64019, 26984, 64020, 27032, 27106, 27184, 27243, 27206, 27251, 27262,
27362, 27364, 27606, 27711, 27740, 27782, 27759, 27866, 27908, 28039,
28015, 28054, 28076, 28111, 28152, 28146, 28156, 28217, 28252, 28199,
28220, 28351, 28552, 28597, 28661, 28677, 28679, 28712, 28805, 28843,
28943, 28932, 29020, {f: 2, c: 28998}, 0, 29121, 29182, 29361, 29374,
29476, 64022, 29559, 29629, 29641, 29654, 29667, 29650, 29703, 29685,
29734, 29738, 29737, 29742, 0, 29833, 29855, 29953, 30063, 30338, 30364,
30366, 30363, 30374, 64023, 30534, 21167, 30753, 30798, 30820, 30842,
31024, {f: 3, c: 64024}, 31124, 64027, 31131, 31441, 31463, 64028, 31467,
31646, 64029, 32072, 0, 32183, 32160, 32214, 32338, 32583, 32673, 64030,
33537, 33634, 33663, 33735, 33782, 33864, 33972, 34131, 34137, 34155,
64031, 34224, {f: 2, c: 64032}, 34823, 35061, 35346, 35383, 35449, 35495,
35518, 35551, 64034, 35574, 35667, 35711, 36080, 36084, 36114, 36214,
64035, 36559, 0, 64037, 36967, 37086, 64038, 37141, 37159, 37338, 37335,
37342, {f: 2, c: 37357}, {f: 2, c: 37348}, 37382, 37392, 37386, 37434,
37440, 37436, 37454, 37465, 37457, 37433, 37479, 37543, {f: 2, c: 37495},
37607, 37591, 37593, 37584, 64039, 37589, 37600, 37587, 37669, 37665,
37627, 64040, 37662, 37631, 37661, 37634, 37744, 37719, 37796, 37830,
37854, 37880, 37937, 37957, 37960, 38290, 0, 64041, 38557, 38575, 38707,
{s: 3}, [11942, 20012], 0, 0, 29935, 30069, 30188, 30286, 16305, 30570,
30633, {s: 6}, 31571, 0, 0, 16996, {s: 3}, 194924, 0, 0, 32328, {s: 5},
11955, {s: 4}, 33089, 17491, 0, [11966, 33401], [11967, 64094],
[11968, 64093], 0, 20857, 33626, {s: 3}, 17701, 0, 34292, 131248, {s: 4},
34429, 0, 13358, 35014, {s: 6}, 18406, {s: 8}, 36808, {s: 19}, 166279, 0,
0, 167447, 0, 0, 38969, {s: 6}, 39432, {s: 4}, 39903, {s: 10}, 148206,
{s: 5}, 21385, 0, 64017, 194785, 0, 146622, 132625, 0, {f: 2, c: 19972},
19999, 20011, {f: 2, c: 20015}, {f: 2, c: 20032}, 20036, [11907, 20058],
20095, 20109, 20118, 20153, 20176, 20192, 20221, 20223, 20235, 20245,
20320, 20283, 20297, 20308, 20346, {f: 2, c: 20349}, 20375, 20414, 20431,
20477, {f: 2, c: 20480}, 20496, 20507, 20519, 20526, 20567, 20582, 20586,
20539, 20623, 20630, 20636, 20684, 20710, 20713, 20719, 20744, 20747,
20752, 20763, 20766, 20831, 20897, 20924, 0, 20974, 20980, 20993,
[11913, 20994], 21011, 21065, 21089, 21094, 21139, 21192, 21232,
{f: 2, c: 21258}, 21310, 21324, 21323, 21345, 21356, 21419, 21466, 21478,
21493, 21543, 21581, 21606, 21611, 21620, 21645, 21654, 21665, 21677,
21689, 21695, 21702, 21709, 21774, 21803, 21813, 21834, 21856, 0, 21896,
21902, 22024, {f: 2, c: 22030}, 22071, 22079, 22089, 22091, 22095, 22118,
22121, 22127, {f: 2, c: 22129}, 22165, 22170, {f: 2, c: 22188}, 22193,
22217, 22237, 22244, 22282, 22293, 22307, 22319, {f: 2, c: 22323}, 22348,
22384, 22412, 22428, 22456, 22502, 22509, {f: 2, c: 22517}, 22527, 22537,
22560, 22578, 22652, 22656, 22697, 22734, 22736, 22740, 22746, 22761,
22796, 22820, 22831, 22881, 22893, 22986, 22994, 23005, {f: 2, c: 23011},
23044, 23052, 23075, 23111, 23125, 23139, 23149, 23166, 23198, 23207,
23212, 23219, 23264, 23296, 23321, 23333, 23341, 23361, 23420,
{f: 2, c: 23422}, 23434, [11919, 23587], 23595, 23600, 23651, 23657, 23676,
23755, 23762, 23796, 23844, 23846, 23875, 23878, 23882, 23954, 23956,
23961, 23968, 24024, 24032, 24056, 24064, 24082, {f: 2, c: 24084}, 24088,
24110, 24152, {f: 2, c: 24171}, 24232, 24234, {f: 2, c: 24254}, 0, 24274,
24327, 24334, {f: 2, c: 24348}, 24354, 24360, 24374, 24379, 24384,
[12089, 24400], 24408, 24420, 24457, 24476, 24487, 24484, 24495, 24504,
[11926, 24516], 24521, 24545, 24553, 24557, 24572, 24599, 24602, 24627,
24673, 24703, 24734, 24740, 24752, 24779, 24795, 24824, {f: 3, c: 24850},
24860, 24956, 24973, 24991, 25000, 25026, 25055, 25109, 25129, 25155,
25158, [11928, 25164], 25169, 25174, 25284, 25340, 25354, 25357, 25368,
25401, {f: 2, c: 25410}, 25445, 25460, 25469, 25476, 25479, 25488, 25502,
25553, 25564, 25609, 25616, 25634, 25684, 25691, 25709, 25723,
{f: 2, c: 25790}, 25829, 25847, 25851, 25860, 25878, 25881, 25927, 25959,
25985, 25989, 26050, 26096, 26098, 26156, 26188, {f: 2, c: 26203}, 26209,
26219, 0, 26276, 26312, 26348, 26373, 26387, 26419, 26440, 26444, 26486,
26491, 26544, 26546, 26617, 26583, 26585, 26608, 26668, {f: 2, c: 26672},
26715, 26738, 26741, 26746, 26756, 26789, 26802, 26832, 26838, 26856,
26861, {f: 2, c: 26864}, 26876, 26897, 26899, 26933, 26939, 26967, 26979,
26994, {f: 2, c: 27007}, 27046, 27053, 27063, {f: 2, c: 27094}, 27137,
27151, 27157, 27176, 27188, 27198, 27205, {f: 2, c: 27216}, 27222, 27227,
27267, 27273, 27281, {f: 3, c: 27293}, 27356, 27367, 27372, 27422, 27428,
27445, 27462, 27478, 27488, 27522, 27582, 27617, 27633, 27664, 27699,
[11937, 27701], 11938, 27737, 27766, 27771, 27781, 27797, 27804, 27856,
27860, 27862, 27872, {f: 2, c: 27883}, 27886, 27914, 27918, 27921, 27950,
27991, 27998, 28005, 28034, 28095, 28100, 28106, 28118, 28137, 28194,
28241, 28359, 28362, 28366, 28413, 28442, 28458, 28463, 28467, 28506,
28510, 28514, 28541, 28555, 28557, 28562, 28564, 28570, {f: 2, c: 28583},
28598, 28634, 28638, 0, 28729, 28732, 0, 28756, {f: 2, c: 28765}, 28772,
[11939, 28780], 28798, 28801, 28821, 28855, {f: 2, c: 28883}, 28888, 28892,
28935, 28960, 28977, 29002, 29010, 29024, 29049, 29074, 0, 29131, 29139,
29142, 29184, 29213, 29227, 29240, 29249, 29267, {f: 2, c: 29269}, 29276,
29325, [11944, 29357], 29364, 29383, 29435, {f: 2, c: 29444}, 29480, 29489,
29507, 29548, 29564, 29571, {f: 2, c: 29573}, 29589, {f: 3, c: 29598},
29606, 29611, 29621, 29623, 29628, 29647, 29657, 29673, 29684, 29693,
29700, 29706, {f: 2, c: 29722}, 29732, 29736, 29740, {f: 3, c: 29743},
29753, 29764, 29767, 29771, 29773, 29777, 29783, 29798, 29803, 29809,
29824, {f: 3, c: 29829}, 29840, 29848, 29852, 29856, 29859, 29864, 29867,
29877, 29887, 29896, 29914, 29918, 30030, 30073, 30081, 30096,
[12135, 30098], 30099, 30132, 30180, 30201, 30208, 30218, {f: 2, c: 30229},
30233, 30238, 30253, 30261, 30275, 30283, 30309, 30317, 30319, 30321,
30324, {f: 2, c: 30372}, 30405, 30412, 30444, 30460, 30516, 30518, 30556,
{f: 2, c: 30559}, 30578, 30589, 30613, 30634, 30694, 30704, 30708, 30726,
30754, {f: 2, c: 30765}, 30768, 30773, 30824, 30878, 30920, 30924, 30926,
30948, {f: 2, c: 30944}, 30962, 30967, 30971, 31025, 0, [11949, 31035],
31037, 31045, {f: 2, c: 31067}, 31115, 31126, 31128, [12145, 31160], 31163,
31178, 31194, 31235, 31241, 31249, 31262, 31277, 31289, 31301, 31308,
31325, 0, 31341, 31352, 31392, 31395, 31411, {f: 2, c: 31419}, 31430,
31495, 31508, 31527, 31537, 31559, 31566, 31584, 31593, 31597, 31602,
31633, 31663, 31703, 31705, 31755, 31759, 31776, 31782, 31793, 31798,
31825, 31833, 31847, 31854, 31856, 31932, 31935, {f: 2, c: 31944}, 31959,
31961, 31965, 31979, {f: 3, c: 32007}, 32019, 32029, 32035, 32065, 32083,
32089, 32093, 32122, 32134, {f: 2, c: 32139}, 32204, 32235, 32241, 32249,
32264, 32273, 32277, 32288, 32327, 32354, 32366, 32371, 32397, 32401,
32408, 32580, 32591, [11947, 11954, 32594], [11953, 32595], 32609, 32657,
32703, 32718, 32735, 32741, 32748, {f: 2, c: 32750}, 32762, 32782, 32785,
32788, 32804, 32806, 32826, 32828, 32864, 32881, 32885, 32926, 32934,
32939, {f: 2, c: 32983}, 33046, 33048, 33082, 33098, 33100, 33153, 33156,
33204, 33231, 33273, 33283, 33313, 33330, 33332, 33350, 33355, 33359,
33422, 33454, 33463, 33470, 33478, 33534, 33603, 33617, 33621, 33670,
33677, 33682, 33688, 33705, {f: 2, c: 33727}, 33770, 33807, 33809, 33866,
33910, 33960, 33967, 33984, 33986, 34032, 34045, 34060, 34100, 34142,
34191, 34231, 34254, 34221, 34322, 34345, 34386, 34403, 34412, 34415,
34426, 34445, 34449, 34456, {f: 2, c: 34471}, 34554, 34557, 34571, 34579,
34585, 34590, 34600, 34622, 34673, 34696, 34713, {f: 2, c: 34732}, 34741,
34774, 34795, 34797, 34817, 0, 34822, 34827, 34836, 34844, 34902, 34911,
[11970, 34916], 34968, 34986, {f: 2, c: 35005}, 35018, 35026, 35035,
{f: 2, c: 35056}, 35078, {f: 3, c: 35096}, 35111, 35120, 35134, 35195,
35284, 35286, 35301, 35313, 35335, 35343, 35349, 35362, 35406, 35455,
35572, 35615, 35639, {f: 2, c: 35651}, 35668, 35740, 35742, 35911, 35924,
35955, 36004, 36057, 36065, 36088, 36094, 36123, 36201, 36204, 36228,
36237, 36245, 36262, 36294, 36302, 36324, 36332, 36384, 36427, 36460,
36464, 36474, 36498, 36526, 36531, 36561, 36564, 36601, 36631, 36662,
36774, [12193, 36789], [11981, 36790], 0, 36832, 36836, 36854, 36866,
36908, 36932, 37000, 37013, 37017, 37019, 37026, 37044, 37079, 37085,
37108, 37143, 37148, 37169, 37178, 37181, 37192, 37211, 37217, 37220,
37262, 37278, 37288, {f: 2, c: 37293}, 37298, 37308, 37360, 37367, 37371,
37383, 37416, 37427, 37432, 37443, 37447, 37455, 37472, 37570,
{f: 2, c: 37579}, 37599, 37645, 37653, 37663, 37671, 37703, 37714, 0,
37738, 37741, 37787, 37818, 37801, 37825, 37834, 37858, 37882, 37885,
37903, 37940, 37951, 37973, 37995, 38002, [11986, 38264], 38310, 38313, 0,
38324, 38333, 38362, [11983, 11990, 38429], 38465, 38488, 38532, 38564,
38569, 38610, 195060, 38622, 38633, 38641, 38658, 38665, 38746, 38755,
38766, 38771, 38810, 38818, {f: 2, c: 38837}, 38873, 38878, 38900, 38922,
38926, 38942, 38947, 38955, 38974, {f: 2, c: 38994}, 39001, 39020, 39096,
39098, 39103, 39112, 39141, {f: 2, c: 39218}, 39232, 39245, 39260, 39263,
39345, {f: 2, c: 39353}, 39369, 39426, 39446, 39460, 39463,
{f: 2, c: 39469}, 39478, 39480, 39498, 39510, {f: 2, c: 39605}, 39673,
39683, 39712, {f: 2, c: 39731}, 39795, 39801, 39847, 39873, 39879, 39895,
39911, 39915, 39927, 39930, 39933, 39947, 39975, 39978, 39990, 40001,
40019, 40035, 40048, 40055, 40194, 40258, 40263, 40291, 40297, 40316,
40318, 40333, 40369, 40387, 40391, 40406, 40415, 40427, 40436, 40469,
40477, 40612, 40616, 40620, 40679, 40686, 40720, 40722, 40727, 40729,
40751, 40759, 40761, 40769, 40773, 40791, 40808, 40817, 40821, 40848,
40852, 40866, 0, 13317, 194564, 22048, 24267, 11925, 0, 144954, 0, 28665,
28390, 29107, [11940, 64073], {s: 4}, [11980, 64102], 0, 23986, 0, 20435,
20697, 20720, 20931, 22134, 27220, 27905, 28112, 28226, 28377, 29668,
29729, 30060, 30801, 34805, 144382, 29608, 15091, 13531, 17420, 16010, 0,
0, 19432, 0, 16090, 15138, 0, 17786, 16531, 0, 18021, 16643, 17043, 18094,
13448, 140809, {f: 3, c: 63584}, 63610, 63615, {s: 23}, {f: 2, c: 8836},
{f: 2, c: 8842}, 8713, 0, {f: 2, c: 8965}, {s: 9}, {f: 2, c: 8741},
{s: 14}, 8802, 0, 8773, 8776, {f: 2, c: 8822}, {s: 4}, 8487, {s: 209},
{f: 2, c: 8922}, 8533, 8984, {f: 2, c: 7742}, {f: 2, c: 504}, 470, 472,
474, 476, 260, 728, 317, 346, 350, 356, 377, 379, 261, 731, 318, 347, 711,
351, 357, 378, 733, 380, 340, 258, 313, 262, 268, 280, 270, 323, 327, 336,
344, 368, 354, 341, 259, 314, 263, 269, 281, 271, 273, 324, 328, 337, 345,
369, 355, 729, 264, 284, 292, 308, 348, 364, 265, 285, 293, 309, 349, 365,
625, 651, 638, 620, 622, 633, 648, 598, 627, 637, 642, 656, 635, 621, 607,
626, 669, 654, 609, 624, 641, 295, 661, 660, 614, 664, 450, 595, 599, 644,
608, 403, 616, 649, 600, 604, 606, 592, 623, 650, 612, 594, 653, 613, 674,
673, 597, 657, 634, 615, 865, 712, 716, 721, 8255, 783, {f: 5, c: 741}, 0,
0, 805, 812, 825, 796, {f: 2, c: 799}, 829, 809, 815, 734, 804, 816, 828,
820, {f: 2, c: 797}, {f: 2, c: 792}, 810, {f: 2, c: 826}, 794, {s: 3},
{f: 2, c: 610}, 618, 628, 630, 632, 640, 655, 665, 668, 671, 688, 690, 695,
704, {f: 2, c: 736}, {s: 6}, 8862, {s: 287}, 12348, 12543, 0,
{f: 2, c: 12310}, 9838, 9835, {f: 2, c: 10548}, 10687, 0, 12448, 0,
{f: 2, c: 10746}, {s: 13}, 962, {f: 10, c: 9461}, {f: 2, c: 9750}, 9649,
{f: 10, c: 12784}, 0, {f: 6, c: 12794}, {f: 15, c: 9150}, 0, 0, 10003, 0,
9251, 9166, {f: 4, c: 9680}, {f: 2, c: 8263}, 0, 8273, 8258,
{f: 16, c: 12688}, {s: 13}, {f: 2, c: 9136}, {f: 12, c: 9842},
{f: 2, c: 12441}, 8413, {s: 450}, 20296, 20319, 20330, 20332, 20494, 20504,
20545, 20722, 20688, 20742, 20739, 20789, 20821, 20823, 13493, 20938,
20962, 21079, 21196, 21206, 21243, 21276, 21347, 21405, 21522, 21631,
21640, 21840, 21889, 21933, 21966, 22075, 22174, 22185, 22195, 22391,
22396, 135963, 22479, 22500, 22628, 22665, 136302, 22738, 22752, 34369,
22923, 22930, 22979, 23059, 23143, 23159, 23172, 23236, 137405, 23421,
23443, 23570, 64060, 136884, 23674, 23695, 23711, 23715, 23722, 23760,
138804, 23821, 23879, 23937, 23972, 23975, 24011, 24158, 24313, 24320,
24322, 24355, 24381, 24404, 24445, 24589, 24596, 24600, 24629, 24647,
24733, 24788, 24797, 24875, 25020, 25017, 25122, 25178, 25199, 25302,
25468, 25573, 25721, 25796, 25808, 25897, 26013, 26170, 26146, 26155,
26160, 26163, 26184, 143812, {f: 2, c: 26231}, 26253, 26299, 26331, 26344,
26439, 26497, 26515, 26520, 26523, 26620, 26653, 26787, 26890, 26953,
144836, 26946, 26980, 27045, 27087, 15286, 15299, 27113, 27125, 145215,
27195, 145251, 27284, 27301, 15375, 27419, 27436, 27495, 27561, 27565,
27607, 27647, 27653, 27764, 27800, 27899, 27846, 27953, 27961, 27967,
27992, 28052, 28074, 28123, 28125, 28228, 28254, 28337, 28353, 28432,
28505, 28513, 28542, 28556, 28576, 28604, 28615, 28618, 28656, 28750,
28789, 28836, 28900, 28971, 28958, 28974, 29009, 29032, 29061, 29063,
29114, 29124, 29205, 15935, 29339, 149489, 29479, 29520, 29542, 29602,
29739, 29766, 29794, 29805, 29862, 29865, 29897, 29951, 29975, 16242,
30158, 30210, 30216, 30308, 30337, 30365, 30378, 30390, 30414, 30420,
30438, 30449, 30474, 30489, {f: 2, c: 30541}, 30586, 30592, 30612, 30688,
152718, 30787, 30830, 30896, 152846, 30893, 30976, 31004, 31022, 31028,
31046, 31097, 31176, 153457, 31188, 31198, 31211, 31213, 31365, 154052,
31438, 31485, 31506, 31533, 31547, 31599, 31745, 31795, 155041, 31853,
31865, 31887, 31892, 31904, 31957, 32049, 32092, 32131, 32166, 32194,
32296, 32663, 32731, 32821, 32823, 32970, 32992, 33011, 33120,
{f: 2, c: 33127}, 33133, 33211, 33226, 33239, 17499, 33376, 33396, 158463,
33441, {f: 2, c: 33443}, 33449, 33471, 33493, 33533, 33536, 33570, 33581,
33594, 33607, 33661, 33703, 33743, 33745, 33761, 33793, 33798, 33887,
33904, 33907, 33925, 33950, 33978, 159296, 34098, 34078, 34095, 34148,
34170, 34188, 34210, 34251, 34285, 34303, {f: 2, c: 34308}, 34320, 159988,
34328, 34360, 34391, 34402, 17821, 34421, 34488, 34556, 34695, 17898,
34826, 34832, 35022, 161412, 35122, 35129, 35136, 35220, 35318, 35399,
35421, 35425, 35445, 35536, 35654, 35673, 35689, 35741, 35913, 35944,
36271, 36305, 36311, 36387, 36413, 36475, 164471, 18500, 36602, 36638,
36653, 36692, 164813, 36840, 36846, 36872, 36909, 37015, 37043, 37054,
{f: 2, c: 37060}, 37063, 37103, 37140, 37142, {f: 2, c: 37154}, 37167,
37172, 37251, 37361, 37705, {f: 2, c: 37732}, 37795, 37855, 37892, 37939,
37962, 37987, 38001, 38286, 38303, 38316, 38326, 38347, 38352, 38355,
18864, 38366, 38565, 38639, 38734, 38805, 38830, 38842, 38849, 38857,
38875, 38998, 39143, 39256, 39427, 39617, 39619, 39630, 39638, 39682,
39688, 19479, 39725, 39774, 39782, 39812, 39818, 39838, 39886, 39909,
39928, 39971, {f: 2, c: 40015}, 40037, {f: 2, c: 40221}, 40259, 40274,
40330, 40342, 40384, 40364, 40380, 172432, 40423, 40455, 40606, 40623,
40855, 131209, 19970, 19983, 19986, 20009, 20014, 20039, 131234, 20049,
13318, 131236, 20073, 20125, 13356, 20156, 20163, 20168, 20203, 20186,
20209, 20213, 20246, 20324, 20279, 20286, 20312, 131603, {f: 2, c: 20343},
20354, 20357, 20454, 20402, 20421, 20427, 20434, 13418, 20466, 20499,
20508, 20558, 20563, 20579, 20643, 20616, {f: 2, c: 20626}, 20629, 20650,
131883, 20657, {f: 2, c: 20666}, 20676, 20679, 20723, 131969, 20686,
131953, 20692, 20705, 13458, 132089, 20759, 132170, 20832, 132361, 20851,
20867, 20875, 13500, 20888, 20899, 20909, 13511, 132566, 20979, 21010,
21014, 132943, 21077, 21084, 21100, 21111, 21124, 21122, 133127, 21144,
133178, 21156, {f: 2, c: 21178}, 21194, 21201, 133305, 21239, 21301, 21314,
133500, 133533, 21351, 21370, 21412, 21428, 133843, 21431, 21440, 133917,
{f: 2, c: 13661}, 21461, 13667, 21492, 21540, 21544, 13678, 21571, 21602,
21612, 21653, 21664, 21670, 21678, 21687, 21690, 21699, 134469, 21740,
21743, 21745, 21747, {f: 2, c: 21760}, 21769, 21820, 21825, 13734, 21831,
13736, 21860, 134625, 21885, 21890, 21905, 13765, 21970, 134805, 134765,
21951, 21961, 21964, 21969, 21981, 13786, 21986, 134756, 21993, 22056,
135007, 22023, 22032, 22064, 13812, 22077, 22080, 22087, 22110, 22112,
22125, 13829, 22152, 22156, 22173, 22184, 22194, 22213, 22221, 22239,
22248, {f: 2, c: 22262}, 135681, 135765, 22313, 135803, {f: 2, c: 22341},
22349, 135796, 22376, 22383, {f: 3, c: 22387}, 22395, 135908, 135895,
22426, {f: 2, c: 22429}, 22440, 22487, 135933, 22476, 135990, 136004,
22494, 22512, 13898, 22520, 22523, 22525, 22532, 22558, 22567, 22585,
136132, 22601, 22604, 22631, {f: 2, c: 22666}, 22669, {f: 2, c: 22671},
22676, 22685, 22698, 22705, 136301, 22723, 22733, 22754, {f: 2, c: 22771},
{f: 2, c: 22789}, 22797, 22804, 136663, 13969, 22845, 13977, 22854, 13974,
158761, 22879, 136775, {f: 2, c: 22901}, 22908, 22943, 22958, 22972, 22984,
22989, 23006, 23015, 23022, 136966, 137026, 14031, 23053, 23063, 23079,
23085, 23141, 23162, 23179, 23196, {f: 2, c: 23199}, 23202, 23217, 23221,
23226, 23231, 23258, 23260, 23269, 23280, 23278, 23285, 23304, 23319,
23348, 23372, 23378, 23400, 23407, 23425, 23428, 137667, 23446, 23468,
{f: 2, c: 14177}, 23502, 23510, 14188, 14187, 23537, 23549, 14197, 23555,
23593, 138326, 23647, {f: 2, c: 23655}, 23664, 138541, 138565, 138616,
138594, 23688, 23690, 14273, 138657, 138652, 23712, 23714, 23719, 138642,
23725, 23733, 138679, 23753, 138720, 138803, 23814, 23824, 23851, 23837,
23840, 23857, 23865, 14312, 23905, 23914, 14324, 23920, 139038, 14333,
23944, 14336, 23959, 23984, 23988, 139126, 24017, 24023, 139258, 24036,
24041, 14383, 14390, 14400, 24095, 24126, 24137, 14428, 24150, 14433,
{f: 2, c: 24173}, 139643, 24229, 24236, 24249, 24262, 24281, 140062, 24317,
24328, 140205, 24350, 24391, 24419, 24434, 24446, 24463, 24482, 24519,
24523, {f: 3, c: 24530}, 24546, {f: 2, c: 24558}, 24563, 14615, 24610,
24612, 14618, 24652, 24725, 24744, 141043, 24753, 24766, 24776, 24793,
24814, 24821, 24848, 24857, 24862, 24890, 14703, 24897, 24902, 24928,
141403, {f: 2, c: 24978}, 24983, 24997, 25005, 141483, 25045, 25053, 25077,
141711, 25123, 25170, 25185, 25188, 25211, 25197, 25203, 25241, 25301,
142008, 25341, 25347, 25360, {f: 2, c: 142159}, 25394, 25397,
{f: 2, c: 25403}, 25409, 25412, 25422, 142150, 25433, 142365, 142246,
25452, 25497, 142372, 25492, 25533, {f: 2, c: 25556}, 25568,
{f: 2, c: 25579}, 25586, 25630, 25637, 25641, 25647, 25690, 25693, 25715,
25725, 25735, 25745, 25759, {f: 2, c: 25803}, 25813, 25815, 142817, 25828,
25855, 14958, 25871, 25876, 14963, 25886, 25906, 25924, 25940, 25963,
25978, 25988, 25994, 26034, 26037, 26040, 26047, 26057, 26068, 15062,
26105, 26108, 26116, 26120, 26145, 26154, 26181, 26193, 26190, 15082,
143811, 143861, 143798, 26218, {f: 2, c: 26220}, 26235, 26240, 26256,
26258, 15118, 26285, 26289, 26293, 15130, 15132, 15063, 26369, 26386,
144242, 26393, 144339, 144338, 26445, 26452, 26461, 144336, 144356, 144341,
26484, 144346, 26514, 144351, 33635, 26640, 26563, 26568, 26578, 26587,
26615, 144458, 144465, 144459, 26648, 26655, 26669, 144485, 26675, 26683,
26686, 26693, 26697, 26700, 26709, 26711, 15223, 26731, 26734, 26748,
26754, 26768, 26774, 15213, {f: 3, c: 26776}, 26780, {f: 2, c: 26794},
26804, 26811, 26875, 144612, 144730, 26819, 26821, 26828, 26841,
{f: 2, c: 26852}, 26860, 26871, 26883, 26887, 15239, 144788, 15245, 26950,
26985, 26988, 27002, 27026, 15268, 27030, 27056, 27066, 27068, 27072,
27089, 144953, 144967, 144952, 27107, {f: 2, c: 27118}, 27123, 15309,
27124, 27134, 27153, 27162, 27165, 145180, {f: 2, c: 27186}, 27199, 27209,
27258, 27214, 27218, 27236, 145164, 27275, 15344, 27297, 145252, 27307,
27325, 27334, 27348, 27344, 27357, 145407, 145383, {f: 3, c: 27377}, 27389,
145444, 27403, {f: 3, c: 27407}, 145469, 27415, 15398, 27439, 27466, 27480,
27500, 27509, [11934, 27514], 27521, 27547, 27566, 146072, 27581,
{f: 3, c: 27591}, 27610, {f: 2, c: 27622}, 27630, 27650, 27658, 27662,
27702, 146559, 27725, 27739, 27757, 27780, 27785, 15555, 27796, 27799,
27821, 27842, 15570, 27868, 27881, 27885, 146688, 27904, 27940,
{f: 2, c: 27942}, 27751, 27951, 27964, 27995, 28000, 28016,
{f: 2, c: 28032}, 28042, 28045, 28049, 28056, 146752, 146938, 146937,
146899, 28075, 28078, 28084, 28098, 27956, 28104, 28110, 28127, 28150,
28214, 28190, 15633, 28210, {f: 2, c: 28232}, {f: 2, c: 28235}, 28239,
{f: 2, c: 28243}, 28247, 28259, 15646, 28307, 28327, 28340, 28355, 28469,
28395, 28409, 28411, 28426, 28428, 28440, 28453, 28470, 28476, 147326,
28498, 28503, 28512, 28520, 28560, 28566, 28606, 28575, 28581, 28591,
15716, {f: 2, c: 28616}, 28649, 147606, 28668, 28672, 28682, 28707, 147715,
28730, 28739, 28743, 28747, 15770, 28773, 28777, 28782, 28790, 28806,
28823, 147910, 28831, 28849, 147966, 28908, 28874, 28881, 28931, 28934,
28936, 28940, 15808, 28975, 29008, 29011, 29022, 15828, 29078, 29056,
29083, 29088, 29090, {f: 2, c: 29102}, 148412, 29145, 29148, 29191, 15877,
29236, 29241, 29250, 29271, 29283, 149033, {f: 2, c: 29294}, 29304, 29311,
29326, 149157, 29358, 29360, 29377, 15968, 29388, 15974, 15976, 29427,
29434, 29447, 29458, {f: 2, c: 29464}, 16003, 29497, 29484, 29491, 29501,
29522, 16020, 29547, 149654, {f: 2, c: 29550}, 29553, 29569, 29578, 29588,
29592, 29596, 29605, 29625, 29631, 29637, 29643, 29665, 29671, 29689,
29715, 29690, 29697, 29779, 29760, 29763, 29778, 29789, 29825, 29832,
150093, 29842, 29847, 29849, 29857, 29861, 29866, 29881, 29883, 29882,
29910, 29912, 29931, 150358, 29946, 150383, 29984, 29988, 29994, 16215,
150550, {f: 2, c: 30013}, 30016, 30024, 30032, 30034, 30066, 30065, 30074,
{f: 2, c: 30077}, 30092, 16245, 30114, 16247, 30128, 30135,
{f: 2, c: 30143}, 30150, 30159, 30163, 30173, {f: 2, c: 30175}, 30183,
30190, 30193, 30211, 30232, 30215, 30223, 16302, 151054, 30227,
{f: 2, c: 30235}, 151095, 30245, 30248, 30268, 30259, 151146, 16329, 30273,
151179, 30281, 30293, 16343, 30318, 30357, 30369, 30368, {f: 2, c: 30375},
30383, 151626, 30409, 151637, 30440, 151842, 30487, 30490, 30509, 30517,
151977, 16441, 152037, 152013, 30552, 152094, 30588, 152140, 16472, 30618,
30623, 30626, 30628, {f: 2, c: 30686}, 30692, 30698, 30700, 30715, 152622,
30725, 30729, 30733, 30745, 30764, 30791, 30826, 152793, 30858, 30868,
30884, 30877, 30879, 30907, 30933, 30950, {f: 2, c: 30969}, 30974, 152999,
30992, 31003, 31013, 31050, 31064, 16645, 31079, 31090, 31125, 31137,
31145, 31156, 31170, 31175, {f: 2, c: 31180}, 31190, 16712, 153513, 153524,
16719, 31242, 31253, 31259, 16739, 31288, 31303, 31318, 31321, 31324,
31327, 31335, 31338, 31349, 31362, 31370, 31376, 31404, 154068, 16820,
31417, 31422, 16831, 31436, 31464, 31476, 154340, 154339, 154353, 31549,
31530, {f: 2, c: 31534}, 16870, 16883, 31615, 31553, 16878, 31573, 31609,
31588, 31590, 31603, 154546, 16903, 31632, 31643, 16910, 31669, 31676,
31685, 31690, 154699, 154724, 31700, 31702, 31706, 31722, 31728, 31747,
31758, 31813, 31818, 31831, 31838, 31841, 31849, 31855, 155182, 155222,
155237, 31910, 155234, {f: 2, c: 31926}, 155352, 31940, 155330, 31949,
155368, 155427, 31974, 155484, 31989, 32003, 17094, 32018, 32030, 155616,
155604, {f: 2, c: 32061}, 32064, 32071, 155660, 155643, 17110, 32090,
32106, 32112, 17117, 32127, 155671, 32136, 32151, 155744, 32157, 32167,
32170, 32182, 32192, 32215, 32217, 32230, 17154, 155885, 64088, 32272,
32279, 32285, 32295, 32300, 32325, 32373, 32382, {f: 2, c: 32390}, 17195,
32410, 17219, 32572, 32571, 32574, 32579, 13505, 156272, 156294,
{f: 2, c: 32611}, 32621, {f: 2, c: 32637}, 32656, 20859, 146702, 32662,
32668, 32685, 156674, 32707, 32719, 32739, 32754, 32778, 32776, 32790,
32812, 32816, 32835, 32870, 32891, 32921, 32924, 32932, 32935, 32952,
157310, 32965, 32981, 32998, 33037, 33013, 33019, 17390, 33077, 33054,
17392, 33060, 33063, 33068, 157469, 33085, 17416, 33129, 17431, 17436,
33157, 17442, 33176, 33202, 33217, 33219, 33238, 33243, 157917, 33252,
157930, 33260, 33277, 33279, 158063, 33284, 158173, 33305, 33314, 158238,
33340, 33353, 33349, 158296, 17526, 17530, 33367, 158348, 33372, 33379,
158391, 17553, 33405, 33407, 33411, 33418, 33427, {f: 2, c: 33447}, 33458,
33460, 33466, 33468, 33506, 33512, 33527, {f: 2, c: 33543}, 33548, 33620,
33563, 33565, 33584, 33596, 33604, 33623, 17598, 17620, 17587,
{f: 2, c: 33684}, 33691, 33693, 33737, 33744, 33748, 33757, 33765, 33785,
33813, 158835, 33815, 33849, 33871, {f: 2, c: 33873}, {f: 2, c: 33881},
33884, 158941, 33893, 33912, 33916, 33921, 17677, 33943, 33958, 33982,
17672, {f: 2, c: 33998}, 34003, 159333, 34023, 34026, 34031, 34033, 34042,
34075, {f: 2, c: 34084}, 34091, 34127, 34159, 17731, 34129,
{f: 2, c: 34145}, 159636, 34171, 34173, 34175, 34177, 34182, 34195, 34205,
34207, 159736, {f: 2, c: 159734}, 34236, 34247, 34250, {f: 2, c: 34264},
34271, 34273, 34278, 34294, 34304, 34321, 34334, 34337, 34340, 34343,
160013, 34361, 34364, 160057, 34368, 34387, 34390, 34423, 34439, 34441,
{f: 2, c: 34460}, 34481, 34483, 34497, 34499, 34513, 34517, 34519, 34531,
34534, 17848, 34565, 34567, 34574, 34576, 34591, 34593, 34595, 34609,
34618, 34624, 34627, 34641, 34648, {f: 2, c: 34660}, 34674, 34684, 160731,
160730, 34727, 34697, 34699, 34707, 34720, 160766, 17893, 34750, 160784,
34753, 34766, 34783, 160841, 34787, {f: 2, c: 34789}, 34794, 34835, 34856,
34862, 34866, 34876, 17935, 34890, 34904, 161301, 161300, 34921, 161329,
34927, 34976, 35004, 35008, 161427, 35025, 35027, 17985, 35073, 161550,
35127, 161571, 35138, 35141, 35145, 161618, 35170, 35209, 35216, 35231,
35248, 35255, 35288, 35307, 18081, 35315, 35325, 35327, 18095, 35345,
35348, 162181, 35361, 35381, 35390, 35397, 35405, 35416, 35502, 35472,
35511, 35543, 35580, 162436, 35594, 35589, 35597, 35612, 35629, 18188,
35665, 35678, 35702, 35713, 35723, {f: 2, c: 35732}, 35897, 162739, 35901,
162750, 162759, 35909, 35919, 35927, 35945, 35949, 163000, 35987, 35986,
35993, 18276, 35995, 36054, 36053, 163232, 36081, 163344, 36105, 36110,
36296, 36313, 36364, 18429, 36349, 36358, 163978, 36372, 36374,
{f: 2, c: 36385}, 36391, 164027, 18454, 36406, 36409, 36436, 36450, 36461,
36463, 36504, 36510, 36533, 36539, 164482, 18510, 164595, 36608, 36616,
36651, 36672, 36682, 36696, 164876, 36772, 36788, 164949, 36801, 36806,
64036, 36810, 36813, 36819, 36821, 36849, 36853, 36859, 36876, 36919,
165227, 36931, 36957, {f: 2, c: 165320}, 36997, 37004, 37008, 37025, 18613,
37040, 37046, 37059, 37064, 165591, 37084, 37087, 165626, 37110, 37106,
37120, 37099, {f: 2, c: 37118}, 37124, 37126, 37144, 37150, 37175, 37177,
{f: 2, c: 37190}, 37207, 37209, 37236, 37241, 37253, 37299, 37302,
{f: 2, c: 37315}, 166217, 166214, 37356, 37377, {f: 2, c: 37398}, 166251,
37442, 37450, 37462, 37473, 37477, 37480, 166280, {f: 2, c: 37500}, 37503,
37513, 37517, 37527, 37529, 37535, 37547, {f: 2, c: 166330}, 37554,
{f: 2, c: 37567}, 37574, 37582, 37605, 37649, 166430, 166441, 37623, 37673,
166513, 166467, 37713, 37722, 37739, 37745, 37747, 37793, 166553, 166605,
37768, 37771, 37775, 37790, 37877, 166628, 166621, 37873, 37831, 37852,
37863, 37897, {f: 2, c: 37910}, 37883, 37938, 37947, 166849, 166895, 37997,
37999, 38265, 38278, {f: 2, c: 38284}, 167184, 167281, 38344, 167419,
167455, 38444, {f: 2, c: 38451}, 167478, 38460, 38497, 167561, 38530,
167659, 38554, 167730, 18919, 38579, 38586, 38589, 18938, 167928, 38616,
38618, 38621, 18948, 38676, 38691, 18985, 38710, 38721, 38727, 38743,
38747, 38762, 168608, 168625, 38806, 38814, {f: 2, c: 38833}, 38846, 38860,
38865, 38868, 38872, 38881, 38897, 38916, 38925, 38932, 38934, 19132,
169104, {f: 2, c: 38962}, 38949, 38983, 39014, 39083, 39085, 39088, 169423,
39095, {f: 2, c: 39099}, 39106, 39111, 39115, 39137, 39139, 39146,
{f: 2, c: 39152}, 39155, 39176, 19259, 169712, {f: 2, c: 39190}, 169753,
{f: 3, c: 39194}, 169808, 39217, {f: 3, c: 39226}, 39233, 39238, 39246,
39264, 39331, 39334, 39357, 39359, 39363, 39380, 39385, 39390, 170182,
39408, 39417, 39420, 39434, 39441, 39450, 39456, 39473, 39492, 39500,
39512, 19394, 39599, 19402, 39607, 19410, 39609, 170610, 39622, 39632,
39634, 39637, 39648, 39653, 39657, 39692, 39696, 39698, 39702, 39708,
39723, 39741, 19488, 39755, 39779, 39781, {f: 2, c: 39787},
{f: 2, c: 39798}, 39846, 39852, 171483, 39858, 39864, 39870, 39923, 39896,
39901, 39914, 39919, 39918, 171541, 171658, 171593, 39958,
{f: 3, c: 39960}, 39965, 39970, 39977, 171716, 39985, 39991, 40005, 40028,
171753, {f: 2, c: 40009}, 171739, 40020, 40024, 40027, 40029, 40031,
{f: 3, c: 40041}, {f: 2, c: 40045}, 40050, 40053, 40058, 40166, 40178,
40203, [171982, 171991], 40209, {f: 2, c: 40215}, 172079, 19652, 172058,
40242, 19665, 40266, 40287, 40290, 172281, 172162, 40307, {f: 2, c: 40310},
40324, 40345, 40353, 40383, 40373, 40377, 40381, 40393, 40410, 40416,
40419, 19719, 40458, 40450, 40461, 40476, 40571, 139800, 40576, 40581,
40603, 172940, 40637, 173111, 40671, 40703, 40706, 19831, 40707, 40762,
40765, 40774, 40787, 40789, 40792, 173553, 40797, 173570, 40809, 40813,
40816, 173746, 11948, 13844, 14509, 15820, 16348, 17854, 17936, 19326,
19512, 19681, 19980, {f: 2, c: 20003}, 20089, 20211, 20236, 20249, 20267,
20270, 20273, 20356, 20382, 20407, 20484, 20492, 20556, 20575, 20578,
20599, 20622, 20638, 20642, 20675, 20712, 20721, 20734, 20743,
{f: 3, c: 20748}, 20787, 20792, 20852, 20868, 20920, 20922, 20936, 20943,
20945, {f: 2, c: 20947}, 20952, 20959, 20997, 21030, 21032, 21035,
{f: 2, c: 21041}, 21045, 21052, 21082, 21088, 21102, {f: 2, c: 21112},
21130, 21132, 21217, 21225, 21233, 21251, 21265, 21279, 21293, 21298,
21309, 21349, 21357, 21369, 21374, 21396, 21401, 21418, 21423, 21434,
21441, {f: 2, c: 21444}, 21472, 21523, 21546, 21553, {f: 2, c: 21556},
21580, 21671, 21674, 21681, 21691, 21710, 21738, 21756, 21765, 21768,
21781, 21799, 21802, 21814, 21841, 21862, 21903, 21906, 21908, 21924,
21938, 21955, 21958, 21971, 21979, 21996, 21998, 22001, 22006, 22008,
22021, 22029, {f: 2, c: 22033}, 22060, 22069, 22073, 22093, 22100, 22149,
22175, 22182, 22199, 22220, 22223, 22233, 22241, 22251, 22253, 22257,
22279, 22284, {f: 2, c: 22298}, 22301, 22316, 22318, {f: 2, c: 22333},
22367, 22379, 22381, 22394, 22403, 22423, 22446, 22485, 22503, 22541,
22566, 22605, 22607, 22623, 22637, 22655, 22657, 22680, 22716, 22815,
22819, 22873, 22905, 22935, 22959, 22963, 23007, 23025, 23032, 23218,
23224, 23274, 23286, 23323, 23325, 23329, 23352, 23479, 23511, 23520,
23583, 23594, 23596, 23606, 23641, 23644, 23661, 23773, 23809, 23860,
23869, 23897, 23934, 23939, 24007, 24057, 24104, 24114, 24117, 24155,
24168, 24170, 24183, 24192, 24203, 24243, 24253, 24273, {f: 2, c: 24276},
24397, 24492, 24554, 24583, 24649, 24660, 24679, 24763, 24772, 24829,
24842, 24854, 24874, 24886, 24926, 24932, 24955, 24957, 24959, 24989,
25016, 25052, 25058, 25061, 25064, 25092, 25095, 25137, 25145, 25149,
25210, 25232, 25256, 25306, 25332, 25366, 25386, 25398, 25414, 25419,
25427, 25457, 25461, 25471, 25474, 25482, {f: 2, c: 25518}, 25578,
{f: 2, c: 25592}, 25618, 25624, 25632, 25636, 25642, 25653, 25661, 25663,
25682, 25695, 25716, 25744, {f: 2, c: 25752}, 25772, 25779, 25837, 25840,
25883, 25887, 25902, 25929, 25952, 26002, 26005, 26036, 26046, 26056,
26062, 26064, 26079, 26238, {f: 2, c: 26251}, 26291, 26304, 26319, 26405,
26421, 26453, 26496, 26511, 26513, 26532, 26545, 26549, 26558, 26664,
26758, 26859, 26869, 26903, 26931, 26936, 26971, 26981, 27048, 27051,
27055, 27109, 27121, 27210, 27221, 27239, 27249, 27311, {f: 2, c: 27336},
27395, 27451, 27455, {f: 2, c: 27517}, 27568, 27639, 27641, 27652, 27657,
27661, 27692, 27722, 27730, 27732, 27769, 27820, 27828, 27858, 28001,
28028, 28089, 28144, 28229, 28275, 28283, 28285, 28297, 28348,
{f: 2, c: 28378}, 28454, 28457, 28464, 28551, 28573, 28590, 28599, 28685,
28704, 28745, 28824, 28848, {f: 2, c: 28885}, 28997, 29106, 29172, 29207,
29215, 29251, {f: 2, c: 29263}, 29274, 29280, 29288, 29303, 29316, 29385,
29413, 29428, 29442, 29451, 29470, 29474, {f: 2, c: 29498}, 29517, 29528,
29543, 29810, 29871, 29919, 29924, 29940, 29947, 29974, 29985, 30015,
30046, 30105, 30116, 30145, 30148, 30156, 30167, 30172, 30177, 30191,
30212, 30220, 30237, 30258, 30264, 30277, 30282, 30303, 30381, 30397,
30425, 30443, 30448, 30457, 30464, 30478, 30498, 30504, 30511, 30521,
30526, 30533, 30538, 30543, 30558, 30564, 30567, 30572, 30596,
{f: 2, c: 30604}, 30614, 30631, 30639, 30647, 30654, 30665, 30673, 30681,
30705, 30775, 30812, 30846, 30872, 30881, 30897, 30899, 30921, 30931,
30988, 31007, {f: 2, c: 31015}, 31039, 31042, 31060, 31083, 31100, 31147,
31172, 31210, 31234, 31244, 31280, 31290, 31300, 31360, 31366, 31380,
31413, 31421, 31486, 31531, 31607, 31648, 31660, 31664, 31720, 31730,
31736, 31740, 31742, 31753, 31784, 31791, 31810, {f: 2, c: 31826},
{f: 3, c: 31835}, 31858, 31869, 31879, 31902, 31930, 31943, 31955, 31962,
32060, 32077, 32130, 32133, 32141, 32145, 32158, 32179, 32185, 32208,
32229, {f: 2, c: 32245}, 32303, 32310, 32324, 32367, 32376, 32385, 32573,
32603, 32605, 32613, 32625, {f: 2, c: 32639}, 32651, 32674,
{f: 3, c: 32765}, 32775, 32781, 32798, 32825, 32904, 32910, 32975, 32980,
33005, 33008, 33015, 33018, 33022, 33027, 33047, 33072, 33111, 33135,
33139, 33163, 33168, 33179, 33182, 33227, 33237, {f: 2, c: 33245}, 33249,
33263, 33270, 33280, 33291, {f: 2, c: 33299}, 33306, 33338, 33348, 33389,
33412, 33417, 33425, 33450, 33456, 33488, 33514, 33519, 33526, 33622,
33656, 33784, 33788, 33880, 33939, 33969, 33981, 34043, 34118, 34134,
34141, 34181, 34200, 34370, 34374, 34496, 34580, 34594, 34606, 34617,
34653, 34683, 34700, 34702, {f: 2, c: 34711}, 34718, 34723, 34734, 34751,
34761, 34778, 34840, 34843, 34861, 34874, 34885, 34891, 34894, 34901,
34906, 34926, {f: 3, c: 34970}, 35021, 35040, 35055, {f: 2, c: 35086},
35110, 35125, 35162, 35164, 35179, 35184, 35196, 35237, 35253, 35260,
35285, 35401, 35415, 35431, 35454, 35462, 35478, 35510, 35529, 35537,
35549, 35564, 35573, 35590, 35599, 35601, 35653, 35666, 35693, 35704,
35708, 35710, 35717, 35743, 35915, 35923, 35963, 36026, 36037, 36041,
36050, 36076, 36085, 36087, 36097, 36099, 36119, 36124, 36206, 36241,
36255, 36267, 36274, 36309, 36327, {f: 2, c: 36337}, 36340, 36353, 36363,
36390, 36401, {f: 2, c: 36416}, 36429, 36431, 36444, 36449, 36457, 36465,
36469, 36471, 36489, 36496, 36501, 36506, 36519, 36521, 36525, 36584,
36592, 36615, 36632, 36645, 36647, 36652, 36661, 36666, 36675, 36679,
36689, 36693, {f: 3, c: 36768}, 36773, 36868, 36891, 36911, 36940, 36955,
36976, 36980, 36985, 37003, 37016, 37024, 37042, 37053, 37065, 37104,
37125, 37157, 37210, 37223, 37242, 37258, 37265, 37269, 37296, 37307,
37309, 37314, 37317, 37376, 37385, 37411, 37494, 37518, 37551,
{f: 2, c: 37563}, 37569, 37571, 37573, 37576, 37652, 37683, 37686, 37720,
37759, 37762, 37770, 37819, 37836, 37862, 37881, 37890, {f: 2, c: 37901},
37934, 37964, 38280, 38305, 38335, 38342, 38345, {f: 2, c: 38353}, 38368,
38372, 38374, 38436, 38449, 38456, 38461, 38484, 38516, 38523, 38527,
38529, 38531, 38537, 38550, 38574, 38659, 38683, {f: 2, c: 38689}, 38696,
38705, 38759, 38774, 38781, 38783, 38809, 38815, 38828, 38841, 38861,
38880, 38895, 38919, 38950, 38958, {f: 2, c: 39010}, 39092, 39109, 39170,
39185, 39189, 39221, 39240, 39252, 39262, 39393, 39436, 39440, 39459,
39489, 39505, {f: 2, c: 39613}, 39681, 39689, 39691, {f: 2, c: 39693},
39705, 39733, 39752, 39765, 39784, 39808, 39814, 39824, 39837, 39856,
39871, 39880, 39935, 39938, 39964, 39989, 40004, 40022, 40033, 40040,
40240, 40253, 40298, 40315, 40421, 40425, 40435, 40570, {f: 3, c: 40578},
40624, 40676, 40688, 40690, 40713, 40719, 40724, 40731, 40738, 40742,
{f: 2, c: 40746}, 40756, 40794, 40815, 40862, 40869, 131317, 151044,
151538, 163187, 194581, 194630, 194713, 194726, 194789, 195038, 13790,
{s: 4}, 172722, 0, 0, 131416, {s: 4}, 132529, 0, 0, 132844, {s: 6}, 134488,
{s: 21}, 154060, {s: 9}, 14756, 14776, 142914, 0, 0, 14940, 0, 0, 143339,
0, 0, 162228, 0, 15044, 15051, {s: 5}, 14981, {s: 8}, 15347, 27384, {s: 5},
15665, {s: 9}, 147531, 0, 15936, 14497, {s: 34}, 158878, {s: 12}, 18207,
162876, {s: 4}, 18462, {s: 71}, 39709, 39724, 20482, 20958, 21255, 23532,
63784, 26142, 63785, 28746, 64021, 21857, 27706, 31328, 156492, 34819,
38315, 38741, 171581, 173594],
'Adobe-Korea1': [{f: 95, c: 32}, 8361, 8208, 169, 0, 0, [12288, 12644],
{f: 2, c: 12289}, 12539, 8229, [8230, 8943], 168, 12291, {f: 2, c: 8211},
8214, 65340, 65374, {f: 2, c: 8216}, {f: 2, c: 8220}, {f: 2, c: 12308},
{f: 10, c: 12296}, 177, 215, 247, 8800, {f: 2, c: 8804}, 8734, 8756, 176,
{f: 2, c: 8242}, 8451, 8491, {f: 2, c: 65504}, 65509, 9794, 9792, 8736,
8869, 8978, 8706, 8711, 8801, 8786, 167, 8251, 9734, 9733, 9675, 9679,
9678, 9671, 9670, 9633, 9632, 9651, 9650, 9661, 9660, 8594,
{f: 2, c: 8592}, {f: 2, c: 8595}, 12307, 171, 187, 8730, 8765, 8733, 8757,
{f: 2, c: 8747}, 8712, 8715, {f: 2, c: 8838}, {f: 2, c: 8834}, 8746, 8745,
{f: 2, c: 8743}, 65506, 8658, 8660, 8704, 8707, 180, 732, 711, 728, 733,
730, 729, 184, 731, 161, 191, 8758, 8750, 8721, 8719, 164, 8457, 8240,
9665, 9664, 9655, 9654, 9828, {f: 2, c: 9824}, 9829, 9831, 9827, 9673,
9672, 9635, {f: 2, c: 9680}, 9618, {f: 2, c: 9636}, 9640, 9639, 9638, 9641,
9832, 9743, 9742, 9756, 9758, 182, {f: 2, c: 8224}, 8597, 8599, 8601, 8598,
8600, 9837, {f: 2, c: 9833}, 9836, 12927, 12828, 8470, 13255, 8482, 13250,
13272, 8481, {f: 59, c: 65281}, 65510, {f: 33, c: 65341}, 65507,
{f: 51, c: 12593}, {f: 42, c: 12645}, {f: 10, c: 8560}, {f: 10, c: 8544},
{f: 17, c: 913}, {f: 7, c: 931}, {f: 17, c: 945}, {f: 7, c: 963}, 9472,
9474, 9484, 9488, 9496, 9492, 9500, 9516, 9508, 9524, 9532, 9473, 9475,
9487, 9491, 9499, 9495, 9507, 9523, 9515, 9531, 9547, 9504, 9519, 9512,
9527, 9535, 9501, 9520, 9509, 9528, 9538, 9490, 9489, 9498, 9497, 9494,
9493, 9486, 9485, {f: 2, c: 9502}, {f: 2, c: 9505}, {f: 2, c: 9510},
{f: 2, c: 9513}, {f: 2, c: 9517}, {f: 2, c: 9521}, {f: 2, c: 9525},
{f: 2, c: 9529}, {f: 2, c: 9533}, {f: 2, c: 9536}, {f: 8, c: 9539},
{f: 3, c: 13205}, 8467, 13208, 13252, {f: 4, c: 13219}, {f: 10, c: 13209},
13258, {f: 3, c: 13197}, 13263, {f: 2, c: 13192}, 13256, {f: 2, c: 13223},
{f: 10, c: 13232}, {f: 5, c: 13184}, {f: 6, c: 13242}, {f: 5, c: 13200},
8486, {f: 2, c: 13248}, {f: 3, c: 13194}, 13270, 13253, {f: 3, c: 13229},
13275, {f: 4, c: 13225}, 13277, 13264, 13267, 13251, 13257, 13276, 13254,
198, 208, 170, 294, 306, 319, 321, 216, 338, 186, 222, 358, 330,
{f: 28, c: 12896}, {f: 26, c: 9424}, {f: 15, c: 9312}, 189,
{f: 2, c: 8531}, 188, 190, {f: 4, c: 8539}, 230, 273, 240, 295, 305, 307,
312, 320, 322, 248, 339, 223, 254, 359, 331, 329, {f: 28, c: 12800},
{f: 26, c: 9372}, {f: 15, c: 9332}, 185, {f: 2, c: 178}, 8308, 8319,
{f: 4, c: 8321}, {f: 83, c: 12353}, {f: 86, c: 12449}, {f: 6, c: 1040},
1025, {f: 32, c: 1046}, 1105, {f: 26, c: 1078}, {f: 2, c: 44032}, 44036,
{f: 4, c: 44039}, {f: 8, c: 44048}, {f: 5, c: 44057}, 44064, 44068,
{f: 2, c: 44076}, {f: 3, c: 44079}, {f: 2, c: 44088}, 44092, 44096, 44107,
44109, 44116, 44120, 44124, {f: 2, c: 44144}, 44148, {f: 2, c: 44151},
44154, {f: 2, c: 44160}, {f: 4, c: 44163}, {f: 4, c: 44169}, 44176, 44180,
{f: 2, c: 44188}, {f: 3, c: 44191}, {f: 3, c: 44200}, 44204,
{f: 2, c: 44207}, {f: 2, c: 44216}, {f: 3, c: 44219}, 44225, 44228, 44232,
44236, 44245, 44247, {f: 2, c: 44256}, 44260, {f: 2, c: 44263}, 44266,
44268, {f: 3, c: 44271}, 44275, {f: 2, c: 44277}, {f: 2, c: 44284}, 44288,
44292, 44294, {f: 2, c: 44300}, 44303, 44305, 44312, 44316, 44320, 44329,
{f: 2, c: 44332}, {f: 2, c: 44340}, 44344, 44348, {f: 2, c: 44356}, 44359,
44361, 44368, 44372, 44376, 44385, 44387, {f: 2, c: 44396}, 44400,
{f: 4, c: 44403}, {f: 3, c: 44411}, 44415, {f: 2, c: 44417},
{f: 2, c: 44424}, 44428, 44432, {f: 2, c: 44444}, 44452, 44471,
{f: 2, c: 44480}, 44484, 44488, {f: 2, c: 44496}, 44499, 44508, 44512,
44516, {f: 2, c: 44536}, 44540, {f: 3, c: 44543}, {f: 2, c: 44552}, 44555,
44557, 44564, {f: 2, c: 44592}, 44596, {f: 2, c: 44599}, 44602,
{f: 2, c: 44608}, 44611, {f: 2, c: 44613}, 44618, {f: 3, c: 44620}, 44624,
44628, 44630, {f: 2, c: 44636}, {f: 3, c: 44639}, 44645, {f: 2, c: 44648},
44652,
{f: 3,
{f: 2,
{f: 2,
{f: 2,
{f: 2,
{f: 2,
{f: 3,
{f: 2,
45076,
45134,
45188,
{f: 4,
{f: 3,
{f: 2,
{f: 2,
{f: 3,
{f: 3,
{f: 2,
45442,
45480,
45548,
{f: 2,
45656,
{f: 2,
{f: 2,
{f: 2,
45794,
{f: 5,
{f: 3,
{f: 2,
{f: 2,
45968,
{f: 2,
46045,
{f: 2,
{f: 2,
46252,
{f: 2,
46321,
{f: 4,
{f: 3,
{f: 3,
{f: 2,
{f: 2,
46616,
46756,
{f: 2,
{f: 2,
46948,
46980,
{f: 2,
{f: 2,
{f: 3,
{f: 2,
47172,
47215,
{f: 2,
{f: 2,
47384,
{f: 2,
{f: 2,
{f: 2,
47553,
{f: 2,
{f: 4,
47680,
47704,
47736,
47792,
{f: 2,
47904,
{f: 2,
47969,
48055,
{f: 2,
{f: 5,
{f: 2,
{f: 2,
48270,
{f: 2,
48320,
{f: 3,
48404,
{f: 2,
{f: 2,
48568,
48643,
{f: 2,
{f: 3,
{f: 3,
{f: 3,
{f: 2,
{f: 2,
{f: 2,
49108,
{f: 2,
49317,
{f: 2,
{f: 2,
{f: 2,
{f: 5,
{f: 3,
{f: 3,
{f: 3,
49556,
49580,
49636,
{f: 2,
{f: 2,
{f: 2,
49780,
49819,
49847,
49903,
{f: 2,
{f: 2,
50034,
{f: 2,
{f: 2,
{f: 2,
50297,
50424,
{f: 2,
{f: 2,
{f: 3,
{f: 2,
{f: 2,
50601,
{f: 7,
{f: 2,
{f: 2,
{f: 2,
{f: 3,
{f: 2,
{f: 2,
50816,
{f: 2,
{f: 2,
{f: 2,
{f: 2,
50967,
50997,
51023,
51064,
{f: 2,
{f: 4,
{f: 3,
51172,
{f: 2,
{f: 2,
{f: 2,
{f: 2,
51359,
{f: 2,
{f: 2,
51480,
51555,
{f: 2,
51658,
{f: 2,
{f: 3,
{f: 3,
{f: 2,
{f: 2,
{f: 2,
{f: 2,
52061,
{f: 2,
{f: 3,
{f: 2,
52324,
{f: 2,
{f: 2,
{f: 2,
52520,
52600,
52649,
52731,
52776,
{f: 3,
52860,
{f: 2,
{f: 2,
{f: 3,
53013,
{f: 2,
{f: 2,
53188,
53244,
{f: 2,
{f: 2,
53416,
{f: 2,
53472,
{f: 2,
{f: 2,
53612,
{f: 2,
53767,
53823,
{f: 2,
{f: 2,
53972,
{f: 2,
{f: 2,
{f: 2,
54144,
54176,
{f: 2,
{f: 2,
54301,
54396,
54441,
54523,
{f: 2,
{f: 2,
{f: 2,
54693,
54749,
{f: 2,
54816,
{f: 2,
54887,
54928,
{f: 2,
55016,
{f: 2,
{f: 2,
55124,
55152,
{f: 2,
21621,
29634,
36303,
29647,
23014,
30286,
35563,
34638,
26577, 27204, 28187, [12130, 29976], 30131, 30435, 30640, 32058, 37039,
{f: 2, c: 37969}, 40853, 21283, 23724, 30002, 32987, 37440, 38296, 21083,
22536, 23004, 23713, 23831, 24247, 24378, 24394, 24951, 27743, 30074,
30086, 31968, 32115, 32177, 32652, 33108, 33313, 34193, 35137, 35611,
37628, [38477, 64009], 40007, 20171, 20215, 20491, 20977, 22607, 24887,
24894, 24936, 25913, 27114, 28433, 30117, 30342, 30422, 31623, 33445,
33995, 37799, 38283, 21888, 23458, 22353, 31923, 32697, 37301, 20520,
21435, 23621, 24040, 25298, 25454, 25818, 25831, 28192, 28844, 31067,
36317, 36382, 36989, 37445, 37624, 20094, 20214, 20581, [12081, 24062],
24314, 24838, 26967, 33137, 34388, 36423, 37749, 39467, 20062, 20625,
26480, 26688, 20745, 21133, 21138, 27298, 30652, 37392, 40660, 21163,
24623, 36850, 20552, 25001, 25581, 25802, 26684, 27268, 28608, 33160,
35233, 38548, 22533, 29309, [12125, 29356], 29956, 32121, 32365, 32937,
[12178, 35211, 64010], 35700, 36963, 40273, 25225, 27770, 28500, 32080,
32570, 35363, 20860, 24906, 31645, 35609, 37463, 37772, 20140, 20435,
20510, 20670, 20742, 21185, 21197, 21375, 22384, 22659, 24218, 24465,
24950, 25004, 25806, 25964, 26223, 26299, [26356, 63745], 26775, 28039,
28805, 28913, 29855, 29861, 29898, 30169, 30828, 30956, 31455, 31478,
32069, 32147, 32789, 32831, 33051, 33686, 35686, 36629, 36885, 37857,
38915, 38968, 39514, 39912, 20418, 21843, 22586, [22865, 63753], 23395,
23622, 24760, 25106, 26690, 26800, 26856, 28330, 30028, 30328, 30926,
31293, 31995, 32363, 32380, 35336, 35489, 35903, 38542, 40388, 21476,
21481, 21578, 21617, 22266, 22993, 23396, 23611, 24235, 25335, 25911,
25925, 25970, 26272, 26543, 27073, 27837, 30204, 30352, 30590, 31295,
32660, 32771, 32929, 33167, 33510, 33533, 33776, 34241, 34865, 34996,
35493, 36764, 37678, 38599, 39015, [12220, 39640], [12238, 40723], 21741,
26011, 26354, 26767, 31296, [12181, 35895], 40288, 22256, 22372, 23825,
26118, 26801, 26829, 28414, 29736, 34974, 39908, 27752, [12219, 39592],
20379, 20844, 20849, 21151, 23380, [12079, 24037], 24656, 24685, 25329,
25511, 25915, 29657, 31354, 34467, 36002, 38799, [20018, 63749], 23521,
[12093, 25096], 26524, [12128, 29916], 31185, 33747, 35463, 35506, 36328,
36942, 37707, 38982, [24275, 64011], 27112, 34303, 37101, 20896, 23448,
23532, 24931, 26874, 27454, 28748, 29743, 29912, 31649, 32592, 33733,
35264, 36011, 38364, 39208, 21038, 24669, 25324, 36866, 20362, 20809,
21281, 22745, 24291, 26336, 27960, 28826, 29378, 29654, 31568, 33009,
37979, 21350, 25499, 32619, 20054, 20608, 22602, 22750, 24618, 24871,
25296, 27088, 39745, 23439, 32024, 32945, 36703, 20132, 20689, 21676,
21932, 23308, 23968, 24039, 25898, 25934, 26657, 27211, 29409, 30350,
30703, 32094, 32761, 33184, 34126, 34527, 36611, 36686, 37066, 39171,
39509, 39851, 19992, 20037, 20061, 20167, 20465, 20855, 21246, 21312,
[12061, 21475], [21477, 63750], 21646, 22036, 22389, 22434, 23495, 23943,
24272, 25084, 25304, 25937, 26552, 26601, 27083, 27472, 27590, 27628,
27714, 28317, 28792, 29399, 29590, 29699, 30655, 30697, 31350, 32127,
32777, [12165, 33276], 33285, 33290, 33503, 34914, 35635, 36092, 36544,
36881, 37041, 37476, 37558, 39378, 39493, 40169, 40407,
[12244, 40860, 63751, 63752], 22283, 23616, 33738, 38816, 38827, 40628,
21531, 31384, 32676, 35033, 36557, 37089, 22528, 23624, 25496, 31391,
23470, [12088, 24339], 31353, 31406, 33422, 36524, 20518, 21048, 21240,
21367, 22280, 25331, 25458, 27402, 28099, 30519, 21413, 29527, 34152,
36470, 38357, 26426, 27331, 28528, 35437, 36556, 39243, 26231, 27512,
36020, [12225, 39740], 21483, 22317, 22862, 25542, 27131, 29674, 30789,
31418, 31429, 31998, 33909, 35215, 36211, 36917, 38312, 21243, 22343,
30023, 31584, 33740, 37406, 27224, 20811, 21067, 21127, 25119, 26840,
26997, 38553, 20677, 21156, 21220, 25027, [12100, 26020], 26681, 27135,
29822, 31563, 33465, 33771, 35250, 35641, 36817, 39241, 20170, 22935,
25810, 26129, 27278, 29748, 31105, 31165, 33449, {f: 2, c: 34942}, 35167,
37670, 20235, 21450, 24613, 25201, 27762, 32026, 32102, 20120, 20834,
30684, 32943, 20225, 20238, 20854, 20864, 21980, 22120, 22331, 22522,
22524, 22804, 22855, 22931, 23492, 23696, 23822, [12080, 24049], 24190,
24524, 25216, 26071, 26083, {f: 2, c: 26398}, 26462, 26827, 26820, 27231,
27450, 27683, 27773, 27778, 28103, 29592, 29734, 29738, 29826, 29859,
30072, 30079, 30849, 30959, 31041, {f: 2, c: 31047}, 31098, 31637, 32000,
32186, 32648, 32774, 32813, 32908, 35352, 35663, [35912, 63744], 36215,
37665, 37668, 39138, 39249, {f: 2, c: 39438}, 39525, 40594, 32202, 20342,
21513, 25326, 26708, [12198, 37329, 63754], 21931, 20794, 23068, 25062,
[25295, 63835], 25343, 37027, [35582, 63837], 26262, 29014, 38627, 25423,
25466, 21335, 26511, 26976, 28275, 30007, 32013, 34930, 22218, 23064,
20035, 20839, [22856, 63756], 26608, 32784, [12069, 22899, 63873],
[24180, 63886], [25754, 63889], [31178, 63893], [24565, 63907], 24684,
25288, [25467, 63908], [23527, 63839, 63914], 23511, 21162, 22900, 24361,
[24594, 63840], 29785, 39377, 28611, 33215, 36786, 24817, 33126,
[23615, 63933], 23273, 35365, [26491, 63944], [32016, 63951], 33021, 23612,
[27877, 63971], [21311, 63979], [28346, 63980], 22810, [33590, 63998],
[20025, 63838], 20150, 20294, 21934, 22296, 22727, 24406, 26039, 26086,
27264, 27573, 28237, 30701, 31471, 31774, 32222, 34507, 34962, 37170,
37723, 25787, 28606, 29562, 30136, 36948, 21846, 22349, 25018, 25812,
26311, 28129, 28251, 28525, 28601, 30192, 32835, 33213, 34113, 35203,
35527, 35674, 37663, 27795, 30035, 31572, 36367, 36957, 21776, 22530,
22616, 24162, 25095, 25758, 26848, 30070, [31958, 64003], 34739, 40680,
20195, 22408, 22382, [12068, 22823], 23565, 23729, 24118, 24453, 25140,
25825, 29619, 33274, 34955, 36024, 38538, 40667, [23429, 64004], 24503,
24755, 20498, [12049, 20992], 21040, 22294, 22581, 22615, 23566, 23648,
23798, 23947, [24230, 64001], 24466, 24764, 25361, 25481, 25623, 26691,
26873, 27330, 28120, 28193, 28372, 28644, 29182, 30428, 30585, 31153,
31291, 33796, 35241, 36077, 36339, 36424, 36867, 36884, 36947, 37117,
37709, 38518, 38876, 27602, 28678, 29272, 29346, 29544, 30563, 31167,
31716, 32411, [35712, 63834], 22697, 24775, 25958, 26109, 26302, 27788,
28958, 29129, 35930, 38931, 20077, 31361, 20189, 20908, 20941, 21205,
21516, 24999, 26481, 26704, 26847, [27934, 64005], 28540, 30140, 30643,
31461, 33012, 33891, 37509, 20828, [12099, 26007], 26460, 26515, 30168,
31431, 33651, [12182, 35910], 36887, 38957, 23663, 33216, 33434, 36929,
36975, 37389, 24471, 23965, 27225, 29128, 30331, 31561, 34276, 35588,
37159, 39472, [21895, 63755], [25078, 63757], [30313, 63758],
[32645, 63759], [34367, 63760], [34746, 63761], [35064, 63762],
[37007, 63763], [27931, 63765], [28889, 63766], [29662, 63767], 32097,
[33853, 63768], [37226, 63769], [39409, 63770], [20098, 63771],
[21365, 63772], [27396, 63773], 27410, 28734, [29211, 63774],
[34349, 63775], [40478, 63776], 21068, 36771, [23888, 63777], 25829, 25900,
27414, [28651, 63778], 31811, 32412, [34253, 63779], [35172, 63780], 35261,
[25289, 63781], [33240, 63782], [34847, 63783], [24266, 63784],
[26391, 63785], [28010, 63786], [29436, 63787], 29701, 29807, 34690,
[37086, 63788], [20358, 63789], 23821, 24480, 33802, [20919, 63790],
[25504, 63861], [30053, 63862], [20142, 63863], 20486, [20841, 63864],
[20937, 63865], [26753, 63866], 27153, 31918, 31921, [31975, 63867],
[33391, 63868], [35538, 63869], 36635, [37327, 63870], 20406, 20791,
[21237, 63871], [21570, 63872], [24300, 63874], 24942, 25150,
[26053, 63875], 27354, [28670, 63876], [31018, 63877], 34268, 34851,
[38317, 63878], 39522, [39530, 63879], [40599, 63880], [40654, 63881],
[12050, 21147, 63882], [26310, 63883], [27511, 63884], 28701, 31019,
[36706, 63885], 38722, [24976, 63887], [25088, 63888], 25891,
[28451, 63890], [29001, 63891], [29833, 63892], [32244, 63894],
[32879, 63895], [34030, 63897], [36646, 63896], [36899, 63898],
[37706, 63899], 20925, [21015, 63900], [21155, 63901], 27916,
[28872, 63903], [35010, 63904], [24265, 63906], 25986, [27566, 63909],
28610, [31806, 63910], [29557, 63911], [20196, 63912], 20278,
[22265, 63913], 23738, [23994, 63915], [24604, 63916], [29618, 63917],
31533, [32666, 63919], 32718, [32838, 63920], 36894, [37428, 63921],
[38646, 63922], [38728, 63923], [38936, 63924], 40801, [20363, 63925],
28583, [31150, 63926], [37300, 63927], [38583, 63928], [21214, 63791],
25736, [25796, 63792], [27347, 63793], 28510, 28696, [29200, 63794],
20493, 20467, 22521, 24472, 25308, 25490, 26479, 28227, 28953, 30403,
32972, 32986, {f: 2, c: 35060}, 35097, 36064, 36649, 37197, 38506, 20271,
20336, 24091, 26575, 26658, [12137, 30333], 30334, 39748, 24161, 27146,
29033, 29140, 30058, 32321, 34115, 34281, 39132, 20240, 31567, 32624,
38309, 20961, 24070, 26805, 27710, 27726, 27867, 29359, 31684, 33539,
27861, 29754, 20731, 21128, 22721, 25816, 27287, 29863, 30294, 30887,
34327, 38370, 38713, 21342, 24321, 35722, 36776, 36783, 37002, 21029,
30629, 40009, 40712, 19993, 20482, 20853, 23643, 24183, 26142, 26170,
26564, 26821, 28851, 29953, 30149, 31177, 31453, 36647, 39200, 39432,
20445, 22561, 22577, 23542, 26222, 27493, 27921, 28282, 28541, 29668,
29995, 33769, 35036, 35091, 35676, 36628, 20239, 20693, 21264,
[12056, 21340], 23443, [24489, 63846], 26381, 31119, 33145, 33583, 34068,
35079, 35206, 36665, [36667, 64007], 39333, 39954, 26412, 20086, 20472,
22857, 23553, {f: 2, c: 23791}, 25447, 26834, 28925, 29090, 29739, 32299,
34028, 34562, 36898, 37586, 40179, [19981, 63847], 20184, 20463, 20613,
21078, 21103, 21542, 21648, 22496, 22827, 23142, 23386, 23413, 23500,
24220, 25206, 25975, 26023, 28014, 28325, [12119, 29238], 31526, 31807,
[12152, 32566], {f: 2, c: 33104}, 33178, 33344, 33433, 33705, 35331, 36000,
36070, 36091, 36212, 36282, 37096, 37340, [12201, 38428], 38468, 39385,
40167, [21271, 63843], 20998, 21545, 22132, 22707, 22868, 22894, 24575,
24996, 25198, 26128, 27774, 28954, 30406, 31881, 31966, 32027, 33452,
36033, 38640, 20315, 24343, 24447, 25282, 23849, 26379, 26842, 30844,
32323, 40300, 19989, 20633, [12052, 21269], 21290, 21329, 22915, 23138,
24199, 24754, 24970, 25161, 25209, 26000, 26503, 27047, [12112, 27604],
{f: 3, c: 27606}, 27832, 29749, 30202, 30738, 30865, 31189, 31192, 31875,
32203, 32737, 32933, 33086, 33218, 33778, 34586, 35048, 35513, 35692,
36027, 37145, [12206, 38750], [12214, 39131], [12240, 40763], 22188, 23338,
24428, 25996, 27315, 27567, 27996, 28657, 28693, 29277, 29613, 36007,
36051, 38971, 24977, 27703, 32856, 39425, 20045, 20107, 20123, 20181,
20282, 20284, 20351, 20447, 20735, 21490, 21496, 21766, 21987, 22235,
[12064, 22763], 22882, 23057, 23531, 23546, 23556, 24051, 24107, 24473,
24605, 25448, 26012, 26031, 26614, 26619, 26797, 27515, 27801, 27863,
28195, 28681, 29509, 30722, 31038, 31040, 31072, 31169, 31721, 32023,
32114, 32902, 33293, 33678, 34001, 34503, 35039, 35408, 35422, 35613,
36060, 36198, 36781, 37034, 39164, 39391, 40605, 21066, 26388, 20632,
21034, [12077, 23665], 25955, 27733, 29642, 29987, 30109, 31639, 33948,
37240, 38704, 20087, 25746, [27578, 63856], 29022, 34217, 19977, 26441,
26862, 28183, 33439, 34072, 34923, 25591, 28545, 37394, 39087, 19978,
20663, 20687, 20767, 21830, 21930, 22039, 23360, 23577, 23776, 24120,
24202, 24224, 24258, 24819, 26705, 27233, 28248, 29245, 29248,
[29376, 63994], 30456, 31077, 31665, 32724, 35059, 35316, 35443, 35937,
36062, 38684, [22622, 63852], 29885, 36093, 21959, 31329, [32034, 63850],
[12170, 33394], 29298, [12131, 29983], 29989, 31513, 22661, 22779, 23996,
24207, 24246, 24464, 24661, 25234, 25471, 25933, 26257, 26329, 26360,
26646, 26866, 29312, 29790, 31598, 32110, 32214, 32626, 32997, 33298,
34223, 35199, 35475, 36893, 37604, [12233, 40653], [12239, 40736],
[12067, 22805], 22893, 24109, 24796, 26132, 26227, 26512, 27728, 28101,
28511, [12143, 30707], 30889, 33990, 37323, 37675, 20185, 20682, 20808,
21892, 23307, 23459, 25159, 25982, 26059, 28210, 29053, 29697, 29764,
29831, 29887, 30316, 31146, 32218, 32341, 32680, 33146, 33203, 33337,
34330, 34796, 35445, 36323, 36984, 37521, 37925, 39245, 39854, 21352,
23633, 26964, 27844, 27945, 28203, [12166, 33292], 34203, 35131, 35373,
[35498, 63855, 63905], 38634, 40807, 21089, 26297, 27570, 32406, 34814,
36109, 38275, 38493, 25885, 28041, 29166, 22478, 22995, 23468, 24615,
24826, 25104, 26143, 26207, 29481, 29689, 30427, [30465, 63853], 31596,
32854, 32882, 33125, 35488, 37266, 19990, 21218, 27506, 27927, 31237,
31545, 32048, 36016, 21484, 22063, 22609, 23477, [12073, 23567], 23569,
24034, 25152, 25475, 25620, 26157, 26803, 27836, 28040, 28335, 28703,
28836, 29138, 29990, 30095, 30094, 30233, 31505, 31712, 31787, 32032,
32057, 34092, 34157, 34311, 35380, 36877, 36961, 37045, 37559, 38902,
39479, 20439, 23660, 26463, 28049, 31903, 32396, 35606, 36118, 36895,
23403, 24061, 25613, 33984, 36956, 39137, [29575, 63841, 63963], 23435,
24730, 26494, 28126, 35359, 35494, 36865, 38924, 21047, 28753, 30862,
37782, 34928, 37335, 20462, 21463, 22013, 22234, 22402, 22781, 23234,
23432, 23723, 23744, 24101, 24833, 25101, [12095, 25163], 25480, 25628,
25910, [25976, 63849], 27193, 27530, [12116, 27700], 27929, 28465, 29159,
29417, 29560, 29703, 29874, 30246, 30561, 31168, 31319, 31466, 31929,
32143, 32172, 32353, 32670, 33065, 33585, 33936, 34010, 34282, 34966,
35504, 35728, 36664, 36930, 36995, 37228, 37526, 37561, 38539,
{f: 2, c: 38567}, 38614, 38656, 38920, [12216, 39318], 39635, 39706, 21460,
22654, 22809, 23408, 23487, 28113, 28506, 29087, 29729, 29881, 32901,
33789, 24033, 24455, 24490, 24642, 26092, 26642, 26991, 27219, 27529,
27957, 28147, 29667, 30462, 30636, 31565, 32020, 33059, 33308, 33600,
34036, 34147, 35426, 35524, 37255, 37662, 38918, 39348, 25100, 34899,
36848, 37477, 23815, 23847, 23913, 29791, 33181, 34664, 28629,
[25342, 63859], 32722, 35126, 35186, 19998, 20056, 20711, 21213, 21319,
25215, 26119, 32361, 34821, 38494, 20365, 21273, 22070, 22987, 23204,
[12075, 23608], 23630, 23629, 24066, 24337, 24643, 26045, 26159, 26178,
26558, 26612, 29468, [12142, 30690], [12144, 31034], 32709, 33940, 33997,
35222, 35430, 35433, 35553, [12183, 35925], 35962, 22516, 23508, 24335,
24687, 25325, 26893, 27542, 28252, 29060, 31698, 34645, [35672, 63996],
36606, [12215, 39135], 39166, 20280, 20353, 20449, 21627, 23072, 23480,
24892, 26032, 26216, 29180, 30003, 31070, 32051, 33102, [12162, 33251],
33688, 34218, 34254, 34563, 35338, [12189, 36523], [12191, 36763], 36805,
22833, 23460, 23526, 24713, 23529, 23563, [12092, 24515], 27777, 28145,
28683, 29978, 33455, 35574, [20160, 63997], [12055, 21313], 38617,
[12114, 27663], 20126, 20420, 20818, 21854, 23077, 23784, 25105,
[12123, 29273], 33469, 33706, 34558, 34905, 35357, 38463, 38597, 39187,
40201, 40285, 22538, 23731, 23997, 24132, [24801, 63929], 24853, 25569,
[27138, 63764, 63836, 63935], 28197, 37122, 37716, 38990, 39952, 40823,
23433, 23736, 25353, 26191, 26696, 30524, 38593, 38797, 38996, 39839,
26017, 35585, 36555, 38332, 21813, 23721, 24022, 24245, 26263, 30284,
33780, 38343, 22739, 25276, 29390, 40232, 20208, 22830, 24591, 26171,
27523, 31207, 40230, 21395, 21696, 22467, 23830, 24859, 26326, 28079,
30861, 33406, 38552, 38724, 21380, 25212, 25494, 28082, 32266, 33099,
38989, 27387, 32588, 40367, 40474, 20063, 20539, 20918, 22812, 24825,
25590, 26928, 29242, 32822, 37326, 24369, 32004, [33509, 63860], 33903,
33979, 34277, 36493, 20335, 22756, 23363, 24665, 25562, 25880, 25965,
26264, 26954, 27171, 27915, 28673, 29036, 30162, 30221, 31155, 31344,
[12154, 32650], 35140, 35731, 37312, 38525, 39178, 22276, 24481, 26044,
28417, 30208, 31142, 35486, 39341, [12226, 39770], 40812, 20740, 25014,
25233, 27277, 33222, 20547, 22576, 24422, 28937, [12180, 35328], 35578,
23420, 34326, 20474, 20796, 22196, 22852, 25513, 28153, 23978, 26989,
20870, 20104, 20313, 22914, 27487, 27741, 29877, 30998, 33287, 33349,
33593, 36671, 36701, 39192, 20134, 22495, 24441, [26131, 63968], 30123,
32377, 35695, 36870, 39515, 22181, 22567, 23032, 23071, 23476, 24310,
25424, 25403, 26941, 27783, 27839, 28046, 28051, 28149, 28436, 28895,
28982, 29017, 29123, 29141, 30799, 30831, 31605, 32227, 32303, 34893,
36575, 37467, 40182, 24709, 28037, 29105, 38321, 21421, 26579, 28814,
28976, 29744, 33398, 33490, 38331, 39653, 40573, 26308, 29121,
[33865, 63854], 22603, 23992, 24433, 26144, 26254, 27001, 27054, 27704,
27891, 28214, 28481, 28634, 28699, 28719, 29008, 29151, 29552, 29787,
29908, 30408, 31310, 32403, 33521, 35424, 36814, 37704, 38681, 20034,
20522, 21000, 21473, 26355, 27757, 28618, 29450, 30591, 31330, 33454,
34269, 34306, 35028, 35427, 35709, 35947, 37555, 38675, 38928, 20116,
20237, 20425, 20658, 21320, 21566, 21555, 21978, 22626, 22714, 22887,
23067, 23524, 24735, 25034, 25942, 26111, 26212, 26791, 27738, 28595,
28879, 29100, 29522, 31613, 34568, 35492, 39986, 40711, 23627, 27779,
29508, [12127, 29577], 37434, 28331, 29797, 30239, 31337, 32277, 34314,
20800, 22725, 25793, 29934, 29973, 30320, 32705, 37013, 38605, 39252,
28198, [12129, 29926], {f: 2, c: 31401}, 33253, 34521, 34680, 35355, 23113,
23436, 23451, 26785, 26880, 28003, 29609, 29715, 29740, 30871, 32233,
32747, 33048, 33109, 33694, 35916, [38446, 63942], 38929, [12104, 26352],
24448, 26106, 26505, 27754, 29579, 20525, 23043, 27498, 30702, 22806,
23916, 24013, 29477, 30031, 20709, 20985, 22575, 22829, 22934, 23002,
23525, 23970, 25303, 25622, 25747, 25854, 26332, 27208, 29183, 29796,
31368, 31407, 32327, 32350, 32768, 33136, 34799, 35201, 35616, 36953,
36992, 39250, 24958, 27442, 28020, 32287, 35109, 36785, 20433, 20653,
20887, 21191, 22471, 22665, 23481, 24248, 24898, 27029, 28044, 28263,
28342, 29076, 29794, [12132, 29992], 29996, 32883, 33592, 33993, 36362,
37780, 37854, 20110, 20305, 20598, 20778, [12060, 21448], 21451, 21491,
23431, 23507, 23588, 24858, 24962, 26100, [12124, 29275], 29591, 29760,
30402, 31056, 31121, 31161, 32006, [12155, 32701], 33419, 34261, 34398,
36802, 36935, 37109, 37354, 38533, [12204, 38632], 38633, 21206, 24423,
26093, 26161, 26671, 29020, 31286, 37057, 38922, 20113, 27218, 27550,
28560, 29065, 32792, 33464, 34131, 36939, 38549, 38642, 38907, 34074,
39729, 20112, 29066, 38596, 20803, 21407, 21729, 22291, 22290, 22435,
23195, 23236, 23491, 24616, 24895, 25588, 27781, 27961, 28274, 28304,
29232, 29503, 29783, 33489, 34945, 36677, 36960, 38498, 39000, 40219,
[12105, 26376], 36234, 37470, 20301, 20553, 20702, 21361, 22285, 22996,
23041, 23561, 24944, 26256, 28205, 29234, 29771, 32239, 32963, 33806,
33894, 34111, 34655, 34907, 35096, 35586, 36949, [12209, 38859], 39759,
20083, 20369, 20754, 20842, 21807, 21929, 23418, 23461, {f: 2, c: 24188},
24254, 24736, 24799, {f: 2, c: 24840}, 25540, 25912, 26377, 26580, 26586,
{f: 2, c: 26977}, 27833, 27943, 28216, 28641, {f: 2, c: 29494}, 29788,
30001, 30290, 32173, 33278, 33848, 35029, 35480, 35547, 35565, 36400,
36418, 36938, 36926, 36986, [12195, 37193], 37321, 37742, 22537, 27603,
[12161, 32905], 32946, 20801, 22891, 23609, 28516, 29607, 32996, 36103,
37399, 38287, [12160, 32895], 25102, 28700, 32104, 34701, 22432, 24681,
24903, 27575, 35518, 37504, 38577, [12036, 20057], 21535, 28139, 34093,
38512, [12211, 38899], 39150, 25558, 27875, [12194, 37009], 20957, 25033,
33210, 40441, 20381, 20506, 20736, 23452, 24847, 25087, 25836, 26885,
27589, 30097, 30691, 32681, 33380, 34191, 34811, [12176, 34915], 35516,
35696, 37291, [12038, 20108], 20197, 20234, 22839, 23016, 24050, 24347,
24411, 24609, 29246, 29669, [30064, 63842], 30157, 31227, [12157, 32780],
[12159, 32819], 32900, 33505, 33617, 36029, 36019, 36999, 39156, 39180,
28727, 30410, 32714, 32716, 32764, 35610, [12040, 20154], 20161, 20995,
21360, [21693, 63902], 22240, 23035, 23493, 24341, 24525, 28270, 32106,
33589, 34451, 35469, 38765, 38775, [12032, 19968], 20314, 20350, 22777,
[12103, 26085], 28322, 36920, 37808, 39353, 20219, 22764, 22922, 23001,
24641, 31252, 33615, 36035, [12042, 20837], 21316, 20173, 21097, 23381,
33471, 20180, [21050, 63999], 21672, 22985, 23039, [12070, 23376], 23383,
23388, 24675, 24904, 28363, [28825, 63995], 29038, 29574, 29943, 30133,
30913, 32043, 32773, [12163, 33258], 33576, 34071, 34249, 35566, 36039,
38604, 20316, 21242, 22204, 26027, 26152, 28796, 28856, 29237, 32189,
33421, 37196, 38592, 40306, 23409, 26855, 27544, 28538, 30430, 23697,
26283, 28507, 31668, 31786, 34870, 38620, 19976, 20183, 21280, 22580,
22715, 22767, 22892, 23559, 24115, 24196, 24373, 25484, 26290, 26454,
27167, 27299, 27404, 28479, 29254, 29520, 29835, 31456, 31911, 33144,
33247, 33255, 33674, 33900, 34083, 34196, 34255, 35037, 36115, 37292,
[12199, 38263], 38556, 20877, 21705, 22312, 23472, 25165, 26448, 26685,
26771, 28221, 28371, 28797, 32289, 35009, 36001, 36617, 40779, 40782,
29229, 31631, 35533, 37658, 20295, 20302, 20786, 21632, 22992, 24213,
25269, 26485, 26990, 27159, 27822, 28186, 29401, 29482, 30141, 31672,
32053, 33511, 33785, 33879, 34295, 35419, 36015, 36487, 36889, 37048,
38606, 40799, 21219, 21514, 23265, 23490, 25688, 25973, 28404, 29380,
30340, 31309, 31515, 31821, 32318, 32735, 33659, 35627, 36042,
[12186, 36196], 36321, 36447, 36842, 36857, 36969, 37841, 20291, 20346,
20659, 20840, 20856, 21069, 21098, 22625, 22652, 22880, 23560, 23637,
24283, 24731, 25136, 26643, 27583, 27656, 28593, 29006, 29728,
[12133, 30000], 30008, 30033, 30322, 31564, 31627, 31661, 31686, 32399,
35438, 36670, 36681, 37439, 37523, 37666, 37931, 38651, 39002, 39019,
39198, [20999, 64000], 25130, 25240, 27993, 30308, 31434, 31680, 32118,
21344, 23742, 24215, 28472, 28857, 31896, 38673, 39822, 40670, 25509,
25722, 34678, 19969, 20117, 20141, 20572, 20597, 21576, 22979, 23450,
24128, 24237, 24311, 24449, 24773, 25402, 25919, 25972, 26060, 26230,
26232, 26622, 26984, 27273, 27491, 27712, 28096, 28136, 28191, 28254,
28702, 28833, 29582, 29693, 30010, 30555, 30855, 31118, 31243, 31357,
31934, 32142, 33351, 35330, 35562, 35998, 37165, 37194, 37336, 37478,
37580, 37664, 38662, 38742, 38748, 38914, [12237, 40718], 21046, 21137,
21884, 22564, 24093, 24351, 24716, 25552, 26799, 28639, 31085, 31532,
33229, 34234, 35069, 35576, 36420, 37261, 38500, 38555, 38717, 38988,
[12241, 40778], 20430, 20806, 20939, 21161, 22066, 24340, 24427, 25514,
25805, 26089, 26177, 26362, 26361, 26397, 26781, 26839, 27133, 28437,
28526, 29031, 29157, [12118, 29226], 29866, 30522, 31062, 31066, 31199,
31264, 31381, 31895, 31967, 32068, 32368, 32903, 34299, 34468, 35412,
35519, 36249, 36481, 36896, 36973, 37347, 38459, 38613, [12227, 40165],
26063, 31751, [12188, 36275], 37827, 23384, 23562, 21330, 25305, 29469,
20519, 23447, 24478, 24752, 24939, 26837, 28121, 29742, 31278, 32066,
32156, 32305, 33131, 36394, 36405, 37758, 37912, 20304, 22352, 24038,
24231, 25387, 32618, 20027, 20303, 20367, 20570, 23005, 32964, 21610,
21608, 22014, 22863, 23449, 24030, 24282, 26205, 26417, 26609, 26666,
27880, 27954, 28234, 28557, 28855, 29664, 30087, 31820, 32002, 32044,
32162, [12168, 33311], 34523, 35387, 35461, [12187, 36208], 36490, 36659,
36913, 37198, 37202, 37956, 39376, [12149, 31481], 31909, 20426, 20737,
20934, 22472, 23535, 23803, 26201, 27197, 27994, 28310, 28652, 28940,
30063, 31459, 34850, 36897, 36981, 38603, 39423, 33537, 20013, 20210,
34886, 37325, 21373, 27355, 26987, 27713, 33914, 22686, 24974, 26366,
25327, 28893, 29969, 30151, 32338, 33976, 35657, 36104, 20043, 21482,
21675, 22320, 22336, 24535, 25345, 25351, 25711, [12096, 25903], 26088,
26234, 26525, 26547, [12108, 27490], 27744, 27802, 28460, 30693, 30757,
31049, 31063, 32025, 32930, 33026, [12164, 33267], 33437, 33463, 34584,
35468, 36100, 36286, 36978, 30452, 31257, 31287, 32340, 32887, 21767,
21972, 22645, 25391, 25634, 26185, 26187, 26733, 27035, 27524, 27941,
28337, 29645, 29800, 29857, 30043, 30137, 30433, 30494, 30603, 31206,
32265, 32285, 33275, 34095, 34967, 35386, 36049, 36587,
[12192, 36784, 63857], 36914, 37805, 38499, 38515, 38663, 20356, 21489,
23018, 23241, 24089, 26702, 29894, 30142, 31209, 31378, 33187, 34541,
36074, 36300, 36845, 26015, 26389, 22519, 28503, 32221, 36655, 37878,
38598, 24501, 25074, 28548, 19988, 20376, 20511, 21449, 21983, 23919,
24046, 27425, 27492, 30923, 31642, 36425, [12190, 36554, 63746], 36974,
25417, 25662, 30528, 31364, 37679, 38015, 40810, 25776, 28591, 29158,
29864, 29914, 31428, 31762, 32386, 31922, 32408, 35738, 36106, 38013,
39184, 39244, 21049, 23519, 25830, 26413, 32046, 20717, [21443, 63851],
22649, {f: 2, c: 24920}, 25082, 26028, 31449, 35730, 35734, 20489, 20513,
21109, 21809, 23100, 24288, 24432, 24884, 25950, 26124, 26166, 26274,
27085, 28356, 28466, 29462, 30241, 31379, 33081, 33369, 33750, 33980,
20661, 22512, 23488, 23528, 24425, 25505, 30758, 32181, 33756, 34081,
37319, 37365, 20874, 26613, 31574, 36012, 20932, 22971, 24765, 34389,
20508, 21076, 23610, 24957, 25114, [25299, 64002], 25842, 26021, 28364,
30240, 33034, 36448, 38495, 38587, 20191, 21315, 21912, 22825, 24029,
25797, 27849, 28154, 29588, 31359, [12167, 33307], 34214, 36068, 36368,
36983, 37351, 38369, 38433, 38854, 20984, 21746, 21894, 24505, 25764,
28552, 32180, 36639, 36685, 37941, 20681, 23574, 27838, 28155, 29979,
30651, 31805, 31844, 35449, 35522, 22558, 22974, 24086, 25463, 29266,
30090, 30571, 35548, 36028, 36626, 24307, 26228, 28152, 32893, 33729,
35531, [12205, 38737], 39894, 21059, 26367, 28053, 28399, 32224, 35558,
36910, 36958, 39636, 21021, 21119, 21736, 24980, 25220, 25307, 26786,
26898, 26970, 27189, 28818, 28966, 30813, 30977, 30990, 31186, 31245,
32918, [12171, 33400], 33493, 33609, 34121, 35970, 36229, 37218, 37259,
37294, 20419, 22225, 29165, 30679, 34560, 35320, [12072, 23544], 24534,
26449, 37032, 21474, 22618, 23541, 24740, 24961, 25696, 32317, 32880,
34085, 37507, 25774, 20652, 23828, 26368, 22684, 25277, 25512, 26894,
27000, 27166, 28267, 30394, 31179, 33467, 33833, 35535, 36264, 36861,
37138, 37195, 37276, 37648, 37656, 37786, 38619, 39478, 39949, 19985,
30044, 31069, 31482, 31569, 31689, 32302, 33988, 36441, 36468, 36600,
36880, 26149, 26943, 29763, 20986, 26414, 40668, 20805, 24544, 27798,
34802, 34909, 34935, 24756, 33205, 33795, 36101, 21462, 21561, 22068,
23094, 23601, 28810, 32736, 32858, 33030, 33261, 36259, 37257, 39519,
40434, 20596, 20164, 21408, 24827, 28204, 23652, 20360, 20516, 21988,
23769, 24159, 24677, 26772, 27835, 28100, 29118, 30164, 30196, 30305,
31258, 31305, 32199, 32251, 32622, 33268, 34473, 36636, 38601, 39347,
[12242, 40786], 21063, 21189, 39149, 35242, 19971, 26578, 28422, 20405,
23522, 26517, [27784, 63858], 28024, 29723, 30759, 37341, 37756, 34756,
31204, 31281, 24555, 20182, 21668, 21822, 22702, 22949, 24816, 25171,
25302, 26422, 26965, 33333, 38464, 39345, 39389, 20524, 21331, 21828,
22396, 25176, 25826, 26219, 26589, 28609, 28655, 29730, 29752, 35351,
37944, 21585, 22022, 22374, 24392, 24986, 27470, 28760, 28845, 32187,
35477, 22890, 33067, 25506, 30472, 32829, 36010, 22612, 25645, 27067,
23445, 24081, 28271, 34153, 20812, 21488, 22826, 24608, 24907, 27526,
27760, 27888, 31518, 32974, 33492, 36294, 37040, 39089, 25799, 28580,
25745, 25860, 20814, 21520, [12063, 22303], 35342, 24927, 26742, 30171,
31570, 32113, 36890, 22534, 27084, 33151, 35114, 36864, 38969, 20600,
22871, 22956, 25237, 36879, 39722, 24925, 29305, 38358, 22369, 23110,
24052, 25226, 25773, 25850, 26487, 27874, 27966, 29228, 29750, 30772,
32631, 33453, 36315, 38935, 21028, 22338, 26495, 29256, 29923, 36009,
36774, 37393, 38442, [12043, 20843], 21485, 25420, 20329, 21764, 24726,
25943, 27803, 28031, 29260, 29437, 31255, 35207, [12185, 35997], 24429,
28558, 28921, 33192, 24846, [20415, 63845], 20559, 25153, [12122, 29255],
31687, 32232, 32745, 36941, 38829, 39449, 36022, 22378, 24179, 26544,
33805, 35413, 21536, 23318, 24163, 24290, 24330, 25987, 32954, 34109,
38281, 38491, 20296, 21253, 21261, 21263, 21638, 21754, 22275, 24067,
24598, 25243, 25265, 25429, 27873, 28006, 30129, 30770, 32990, 33071,
33502, 33889, 33970, 34957, 35090, 36875, 37610, 39165, 39825, 24133,
[26292, 64006], 26333, 28689, 29190, 20469, 21117, 24426, 24915, 26451,
27161, 28418, 29922, 31080, 34920, 35961, 39111, 39108, 39491, 21697,
31263, 26963, 35575, 35914, [12213, 39080], 39342, 24444, 25259, 30130,
[12138, 30382], 34987, 36991, 38466, 21305, 24380, 24517, [27852, 63848],
29644, 30050, [12134, 30091], 31558, 33534, 39325, 20047, 36924, 19979,
20309, 21414, 22799, 24264, 26160, 27827, 29781, 33655, 34662, 36032,
36944, 38686, 39957, 22737, 23416, 34384, 35604, 40372, 23506, 24680,
24717, 26097, 27735, 28450, 28579, 28698, 32597, 32752, {f: 2, c: 38289},
38480, 38867, 21106, 36676, 20989, 21547, 21688, 21859, 21898, 27323,
28085, 32216, 33382, 37532, 38519, 40569, 21512, 21704, 30418, 34532,
38308, 38356, 38492, 20130, 20233, 23022, 23270, 24055, 24658, 25239,
26477, 26689, 27782, 28207, 32568, 32923, 33322, 38917, 20133, 20565,
21683, 22419, 22874, 23401, 23475, 25032, 26999, 28023, 28707, 34809,
35299, 35442, 35559, 36994, 39405, 39608, 21182, 26680, 20502, 24184,
26447, 33607, [12175, 34892, 64008], 20139, 21521, 22190, 29670, 37141,
38911, 39177, 39255, [12217, 39321], 22099, 22687, 34395, 35377, 25010,
27382, 29563, 36562, 27463, 38570, 39511, 22869, 29184, 36203,
[12208, 38761], 20436, 23796, 24358, 25080, 26203, 27883, 28843,
[12126, 29572], 29625, 29694, 30505, 30541, 32067, 32098, 32291, 33335,
34898, 36066, 37449, 39023, 23377, [12147, 31348], [12174, 34880],
[12212, 38913], 23244, 20448, 21332, 22846, 23805, 25406, 28025, 29433,
33029, 33031, 33698, 37583, 38960, 20136, 20804, 21009, 22411, 24418,
27842, 28366, 28677, 28752, 28847, 29074, 29673, [29801, 63918], 33610,
34722, 34913, 36872, 37026, 37795, 39336, 20846, 24407, 24800, 24935,
26291, 34137, 36426, 37295, 38795, 20046, 20114, 21628, 22741, 22778,
22909, 23733, 24359, [12094, 25142], 25160, 26122, 26215, 27627, 28009,
28111, 28246, 28408, 28564, 28640, 28649, 28765, 29392, 29733, 29786,
29920, 30355, 31068, 31946, 32286, 32993, 33446, 33899, 33983, 34382,
34399, 34676, 35703, 35946, 37804, 38912, 39013, 24785, 25110, 37239,
23130, 26127, 28151, 28222, 29759, 39746, 24573, 24794, 31503, 21700,
24344, 27742, 27859, 27946, 28888, 32005, 34425, 35340, 40251, 21270,
21644, 23301, 27194, [12117, 28779], 30069, 31117, [12146, 31166], 33457,
33775, 35441, 35649, 36008, 38772, 25844, 25899, {f: 2, c: 30906}, 31339,
20024, 21914, 22864, 23462, 24187, 24739, 25563, 27489, 26213, 26707,
28185, 29029, 29872, 32008, 36996, 39529, 39973, 27963, [28369, 63748],
29502, 35905, 38346, 20976, 24140, 24488, 24653, 24822, 24880, 24908,
{f: 2, c: 26179}, 27045, 27841, 28255, 28361, 28514, 29004, 29852, 30343,
31681, 31783, 33618, 34647, 36945, 38541, [12232, 40643], 21295, 22238,
24315, 24458, 24674, 24724, 25079, 26214, 26371, 27292, 28142, 28590,
28784, 29546, 32362, 33214, 33588, 34516, 35496, 36036, 21123, 29554,
23446, 27243, 37892, 21742, 22150, 23389, 25928, 25989, 26313, 26783,
28045, 28102, [12120, 29243], 32948, 37237, 39501, 20399, 20505, 21402,
21518, 21564, 21897, 21957, 24127, 24460, 26429, 29030, 29661, 36869,
21211, 21235, 22628, 22734, 28932, 29071, 29179, 34224, 35347,
[26248, 63941], 34216, 21927, 26244, 29002, 33841, 21321, 21913, 27585,
24409, 24509, 25582, 26249, 28999, 35569, 36637, 40638, 20241, 25658,
28875, 30054, 34407, 24676, 35662, 40440, 20807, 20982, 21256, 27958,
33016, [12234, 40657], 26133, 27427, 28824, 30165, 21507, 23673, 32007,
35350, [12107, 27424], 27453, 27462, 21560, 24688, 27965, 32725, 33288,
20694, 20958, 21916, 22123, 22221, 23020, 23305, 24076, 24985, 24984,
25137, 26206, 26342, 29081, {f: 2, c: 29113}, 29351, 31143, 31232, 32690,
35440, {s: 163}, {f: 4, c: 12310}, {s: 14}, 8223, 8219, {f: 2, c: 8314},
{s: 7}, 8316, 0, {f: 2, c: 8317}, {s: 23}, 700, {s: 44}, 8942, 8759,
{s: 20}, {f: 10, c: 10122}, {s: 36}, {f: 26, c: 9398}, {s: 61},
{f: 2, c: 8826}, {f: 2, c: 8910}, {f: 2, c: 8832}, {f: 4, c: 8816}, 0,
8842, 0, 8843, {f: 2, c: 8822}, 8825, {f: 2, c: 8922}, {s: 5}, 8773, 8771,
8776, 0, 8868, {s: 78}, 8244, {s: 11}, 9839, {s: 4}, 8258, {s: 4}, 10045,
0, 0, 8226, {s: 4}, {f: 2, c: 8249}, {s: 16}, 10010, 10006, 0, 9711,
{s: 3}, 10070, 0, 9676, {s: 24}, 9775, {s: 6}, 12320, 0, {f: 10, c: 10102},
{s: 17}, 12306, 12342, {s: 13}, 8710, 0, 8735, 0, {f: 2, c: 8741}, 0, 8787,
8785, {f: 2, c: 8806}, 8723, {f: 3, c: 8853}, 0, 8980, 0, 0, 8802, 0, 9649,
0, 8738, 8784, 0, 0, 8867, 0, 0, {f: 2, c: 8814}, 8837, 8836, 8713, 8716,
{f: 2, c: 8891}, 8794, 8966, {s: 6}, 12958, 0, 8252, {s: 11}, 9702, {s: 3},
9663, 9653, 9657, 9667, {s: 4}, 9674, 12849, 12857, 13259, {f: 5, c: 9327},
{s: 18}, 8656, 8655, 8653, {s: 37}, 8657, 8659, {s: 8}, 8626, 8625, 0,
8628, 8624, 8627, {s: 14}, 8636, 8640, {s: 10}, {f: 2, c: 8644}, {s: 144},
{f: 5, c: 9347}, {s: 33}, 12948, {s: 15}, 12965, {s: 93}, 8672, 8674, 8673,
8675, {s: 4}, 8678, 8680, 8679, 8681, {s: 20}, 9757, 9759, {s: 76}, 12944,
{f: 6, c: 12938}, {s: 15}, {f: 2, c: 12318}, 8246, 0, 8245, {s: 3}, 12540,
0, 0, {f: 2, c: 44034}, {f: 2, c: 44037}, {f: 5, c: 44043}, 44056,
{f: 2, c: 44062}, {f: 3, c: 44065}, {f: 7, c: 44069}, 44078,
{f: 6, c: 44082}, {f: 2, c: 44090}, {f: 3, c: 44093}, {f: 10, c: 44097},
44108, {f: 6, c: 44110}, {f: 3, c: 44117}, {f: 3, c: 44121},
{f: 19, c: 44125}, {f: 2, c: 44146}, {f: 2, c: 44149}, 44153,
{f: 5, c: 44155}, 44162, {f: 2, c: 44167}, {f: 3, c: 44173},
{f: 3, c: 44177}, {f: 7, c: 44181}, 44190, {f: 6, c: 44194}, 44203,
{f: 2, c: 44205}, {f: 7, c: 44209}, 44218, {f: 3, c: 44222},
{f: 2, c: 44226}, {f: 3, c: 44229}, {f: 3, c: 44233}, {f: 8, c: 44237},
44246, {f: 8, c: 44248}, {f: 2, c: 44258}, {f: 2, c: 44261}, 44265, 44267,
{f: 2, c: 44269}, 44274, 44276, {f: 5, c: 44279}, {f: 2, c: 44286},
{f: 3, c: 44289}, 44293, {f: 5, c: 44295}, 44302, 44304, {f: 6, c: 44306},
{f: 3, c: 44313}, {f: 3, c: 44317}, {f: 8, c: 44321}, {f: 2, c: 44330},
{f: 6, c: 44334}, {f: 2, c: 44342}, {f: 3, c: 44345}, {f: 7, c: 44349},
44358, 44360, {f: 6, c: 44362}, {f: 3, c: 44369}, {f: 3, c: 44373},
{f: 8, c: 44377}, 44386, {f: 8, c: 44388}, {f: 2, c: 44398},
{f: 2, c: 44401}, {f: 4, c: 44407}, 44414, 44416, {f: 5, c: 44419},
{f: 2, c: 48206}, {f: 12, c: 48209}, {f: 38, c: 48222}, {f: 2, c: 48262},
{f: 2, c: 48265}, 48269, {f: 5, c: 48271}, 48278, 48280, {f: 5, c: 48283},
{f: 2, c: 48290}, {f: 2, c: 48293}, {f: 7, c: 48297}, 48306,
{f: 6, c: 48310}, {f: 2, c: 48318}, {f: 3, c: 48321}, {f: 8, c: 48325},
48334, {f: 3, c: 48338}, {f: 2, c: 48342}, {f: 3, c: 48345},
{f: 23, c: 48349}, 48375, {f: 3, c: 48377}, {f: 7, c: 48381}, 48390, 48392,
{f: 6, c: 48394}, {f: 3, c: 48401}, {f: 15, c: 48405}, {f: 7, c: 48421},
{f: 19, c: 48429}, {f: 7, c: 48449}, {f: 2, c: 48458}, {f: 3, c: 48461},
{f: 7, c: 48465}, {f: 10, c: 48474}, {f: 3, c: 48485}, {f: 23, c: 48489},
{f: 2, c: 48514}, {f: 2, c: 48517}, {f: 5, c: 48523}, 48530, 48532,
{f: 3, c: 48534}, 48539, {f: 7, c: 48541}, {f: 11, c: 48549},
{f: 7, c: 48561}, {f: 27, c: 48569}, {f: 2, c: 48598}, {f: 3, c: 48601},
{f: 12, c: 48605}, {f: 6, c: 48618}, {f: 3, c: 48625}, {f: 3, c: 48629},
{f: 7, c: 48633}, {f: 2, c: 48641}, 48644, {f: 6, c: 48646},
{f: 2, c: 48654}, {f: 3, c: 48657}, {f: 7, c: 48661}, 48670,
{f: 36, c: 48672}, {f: 2, c: 48710}, {f: 3, c: 48713}, 48717,
{f: 5, c: 48719}, 48726, 48728, {f: 4, c: 48732}, {f: 2, c: 48738},
{f: 3, c: 48741}, 48745, {f: 5, c: 48747}, 48754, {f: 5, c: 48758},
{f: 2, c: 48766}, {f: 3, c: 48769}, {f: 7, c: 48773}, 48782,
{f: 6, c: 48786}, {f: 14, c: 48794}, {f: 39, c: 48809}, {f: 2, c: 48850},
{f: 2, c: 48853}, {f: 7, c: 48857}, {f: 2, c: 48865}, {f: 6, c: 48870},
{f: 20, c: 48877}, {f: 6, c: 48898}, {f: 14, c: 48906}, 48922,
{f: 34, c: 48926}, {f: 2, c: 48962}, {f: 3, c: 48965}, {f: 7, c: 48969},
{f: 3, c: 48978}, {f: 62, c: 48982}, {f: 27, c: 49045}, {f: 20, c: 49073},
{f: 6, c: 49094}, {f: 2, c: 49102}, {f: 3, c: 49105}, {f: 7, c: 49109},
{f: 2, c: 49117}, 49120, {f: 90, c: 49122}, {f: 20, c: 49213},
{f: 6, c: 49234}, {f: 3, c: 49241}, {f: 3, c: 49245}, {f: 7, c: 49249},
{f: 38, c: 49258}, {f: 2, c: 49298}, {f: 3, c: 49301}, {f: 7, c: 49305},
49314, 49316, {f: 6, c: 49318}, 49326, {f: 2, c: 49329}, {f: 5, c: 49335},
49342, {f: 3, c: 49346}, {f: 2, c: 49350}, {f: 2, c: 49354},
{f: 3, c: 49357}, {f: 7, c: 49361}, 49370, {f: 6, c: 49374},
{f: 2, c: 49382}, {f: 3, c: 49385}, {f: 7, c: 49389}, 49398, 49400,
{f: 6, c: 49402}, {f: 3, c: 49409}, {f: 3, c: 49413}, {f: 7, c: 49417},
{f: 4, c: 49425}, {f: 6, c: 49430}, {f: 2, c: 49441}, 49445,
{f: 4, c: 49448}, 49454, {f: 4, c: 49458}, 49463, {f: 2, c: 49466},
{f: 3, c: 49469}, {f: 7, c: 49473}, 49482, {f: 6, c: 49486},
{f: 2, c: 49494}, {f: 3, c: 49497}, {f: 7, c: 49501}, 49510,
{f: 6, c: 49514}, {f: 3, c: 49521}, {f: 3, c: 49525}, {f: 12, c: 49529},
{f: 6, c: 49542}, 49551, {f: 3, c: 49553}, 49557, {f: 5, c: 49559}, 49566,
49568, {f: 3, c: 49570}, {f: 2, c: 49574}, {f: 2, c: 49578},
{f: 3, c: 49581}, {f: 12, c: 49585}, {f: 6, c: 49598}, {f: 3, c: 49605},
{f: 3, c: 49609}, {f: 7, c: 49613}, {f: 2, c: 49621}, {f: 7, c: 49625},
{f: 3, c: 49633}, {f: 3, c: 49637}, {f: 7, c: 49641}, 49650,
{f: 8, c: 49652}, {f: 2, c: 49662}, {f: 3, c: 49665}, {f: 7, c: 49669},
49678, 49680, {f: 6, c: 49682}, {f: 2, c: 49690}, {f: 2, c: 49693},
{f: 7, c: 49697}, 49706, 49708, 49710, 49712, 49715, {f: 19, c: 49717},
{f: 7, c: 49737}, {f: 2, c: 49746}, {f: 3, c: 49749}, {f: 7, c: 49753},
{f: 4, c: 49761}, {f: 6, c: 49766}, {f: 2, c: 49774}, {f: 3, c: 49777},
{f: 7, c: 49781}, 49790, 49792, {f: 6, c: 49794}, {f: 6, c: 49802},
{f: 7, c: 49809}, {f: 2, c: 49817}, 49820, {f: 6, c: 49822},
{f: 2, c: 49830}, {f: 3, c: 49833}, {f: 6, c: 49838}, 49846, 49848,
{f: 34, c: 49850}, {f: 2, c: 49886}, {f: 2, c: 49889}, {f: 6, c: 49893},
49902, 49904, {f: 4, c: 49906}, 49911, 49914, {f: 3, c: 49917},
{f: 7, c: 49921}, {f: 2, c: 49930}, {f: 5, c: 49934}, {f: 2, c: 49942},
{f: 3, c: 49945}, {f: 7, c: 49949}, {f: 2, c: 49958}, {f: 27, c: 49962},
{f: 34, c: 49990}, {f: 2, c: 50026}, {f: 3, c: 50029}, 50033,
{f: 5, c: 50035}, {f: 2, c: 50042}, {f: 6, c: 50046}, {f: 3, c: 50053},
{f: 3, c: 50057}, {f: 51, c: 50061}, {f: 23, c: 50113}, {f: 2, c: 50138},
{f: 2, c: 50141}, 50145, {f: 5, c: 50147}, {f: 3, c: 50154},
{f: 6, c: 50158}, {f: 2, c: 50166}, {f: 15, c: 50169}, {f: 7, c: 50185},
51918, 51920, 51922, {f: 4, c: 51924}, {f: 6, c: 51930}, {f: 11, c: 51937},
{f: 7, c: 51949}, {f: 19, c: 51957}, {f: 7, c: 51977}, {f: 3, c: 51985},
{f: 3, c: 51989}, {f: 7, c: 51993}, {f: 31, c: 52002}, {f: 6, c: 52034},
{f: 2, c: 52042}, {f: 3, c: 52045}, {f: 7, c: 52049}, {f: 3, c: 52058},
{f: 6, c: 52062}, {f: 19, c: 52069}, {f: 34, c: 52090}, {f: 27, c: 52125},
{f: 27, c: 52153}, {f: 15, c: 52181}, {f: 2, c: 52197}, 52200,
{f: 34, c: 52202}, {f: 2, c: 52238}, {f: 3, c: 52241}, {f: 7, c: 52245},
{f: 3, c: 52254}, {f: 4, c: 52259}, {f: 2, c: 52266}, 52269, 52271,
{f: 7, c: 52273}, 52282, {f: 5, c: 52287}, {f: 2, c: 52294},
{f: 3, c: 52297}, {f: 7, c: 52301}, 52310, {f: 6, c: 52314},
{f: 3, c: 52321}, 52325, 52327, {f: 7, c: 52329}, {f: 4, c: 52337},
{f: 34, c: 52342}, {f: 2, c: 52378}, {f: 3, c: 52381}, {f: 7, c: 52385},
52394, {f: 6, c: 52398}, {f: 2, c: 52406}, {f: 3, c: 52409},
{f: 7, c: 52413}, 52422, 52424, {f: 6, c: 52426}, {f: 3, c: 52433},
{f: 15, c: 52437}, {f: 7, c: 52453}, {f: 3, c: 52461}, {f: 16, c: 52465},
{f: 6, c: 52482}, {f: 2, c: 52490}, {f: 3, c: 52493}, {f: 7, c: 52497},
52506, 52508, {f: 6, c: 52510}, {f: 3, c: 52517}, {f: 3, c: 52521},
{f: 12, c: 52525}, {f: 34, c: 52538}, {f: 3, c: 52573}, {f: 3, c: 52577},
{f: 7, c: 52581}, 52590, 52592, {f: 6, c: 52594}, {f: 15, c: 52601},
{f: 11, c: 52617}, {f: 2, c: 52630}, {f: 3, c: 52633}, {f: 7, c: 52637},
52646, 52648, {f: 6, c: 52650}, {f: 19, c: 52657}, {f: 7, c: 52677},
{f: 3, c: 52685}, {f: 23, c: 52689}, {f: 3, c: 52713}, {f: 3, c: 52717},
{f: 7, c: 52721}, 52730, 52732, {f: 6, c: 52734}, {f: 3, c: 52741},
{f: 3, c: 52745}, {f: 7, c: 52749}, {f: 4, c: 52757}, {f: 6, c: 52762},
{f: 2, c: 52770}, {f: 3, c: 52773}, {f: 7, c: 52777}, 52786, 52788,
{f: 34, c: 52790}, {f: 2, c: 52826}, {f: 2, c: 52829}, {f: 6, c: 52834},
52842, 52844, {f: 6, c: 52846}, {f: 2, c: 52854}, {f: 3, c: 52857},
{f: 7, c: 52861}, 52870, 52872, {f: 6, c: 52874}, {f: 2, c: 52882},
{f: 3, c: 52885}, {f: 7, c: 52889}, 52898, {f: 6, c: 52902},
{f: 19, c: 52910}, {f: 34, c: 52930}, {f: 2, c: 52966}, {f: 2, c: 52969},
{f: 7, c: 52973}, 52982, {f: 6, c: 52986}, {f: 2, c: 52994},
{f: 3, c: 52997}, {f: 7, c: 53001}, 53010, 53012, {f: 6, c: 53014},
{f: 3, c: 53021}, {f: 3, c: 53025}, {f: 7, c: 53029}, 53038,
{f: 6, c: 53042}, {f: 27, c: 53049}, {f: 2, c: 53078}, {f: 3, c: 53081},
{f: 7, c: 53085}, 53094, 53096, {f: 6, c: 53098}, {f: 2, c: 53106},
{f: 3, c: 53109}, {f: 7, c: 53113}, {f: 4, c: 53121}, {f: 6, c: 53126},
{f: 20, c: 53133}, {f: 6, c: 53154}, {f: 7, c: 53161}, {f: 19, c: 53169},
{f: 27, c: 53189}, {f: 2, c: 53218}, {f: 3, c: 53221}, {f: 7, c: 53225},
53234, 53236, {f: 6, c: 53238}, {f: 3, c: 53245}, {f: 3, c: 53249},
{f: 12, c: 53253}, {f: 6, c: 53266}, {f: 20, c: 53273}, {f: 6, c: 53294},
{f: 2, c: 53302}, {f: 3, c: 53305}, {f: 7, c: 53309}, 53318, 53320,
{f: 6, c: 53322}, {f: 3, c: 53329}, {f: 3, c: 53333}, {f: 7, c: 53337},
{f: 11, c: 53345}, {f: 2, c: 53358}, {f: 3, c: 53361}, {f: 7, c: 53365},
{f: 3, c: 53374}, {f: 34, c: 53378}, {f: 2, c: 53414}, {f: 3, c: 53417},
{f: 7, c: 53421}, 53430, 53432, {f: 6, c: 53434}, {f: 2, c: 53442},
{f: 3, c: 53445}, {f: 6, c: 53450}, 53458, {f: 6, c: 53462},
{f: 2, c: 53470}, {f: 3, c: 53473}, {f: 7, c: 53477}, 53486,
{f: 6, c: 53490}, {f: 20, c: 53497}, {f: 34, c: 53518}, {f: 2, c: 53554},
{f: 3, c: 53557}, 53561, {f: 5, c: 53563}, 53570, {f: 6, c: 53574},
{f: 2, c: 53582}, {f: 3, c: 53585}, {f: 7, c: 53589}, 53598, 53600,
{f: 6, c: 53602}, {f: 3, c: 53609}, {f: 15, c: 53613}, {f: 7, c: 53629},
{f: 3, c: 53637}, {f: 23, c: 53641}, {f: 2, c: 53666}, {f: 3, c: 53669},
{f: 7, c: 53673}, 53682, 53684, {f: 4, c: 53686}, 53691, {f: 3, c: 53693},
{f: 23, c: 53697}, {f: 27, c: 53721}, {f: 3, c: 53749}, {f: 14, c: 53753},
53768, {f: 6, c: 53770}, {f: 27, c: 53777}, {f: 2, c: 53806},
{f: 3, c: 53809}, {f: 7, c: 53813}, 53822, 53824, {f: 6, c: 53826},
{f: 19, c: 53833}, {f: 7, c: 53853}, {f: 27, c: 53861}, {f: 2, c: 53890},
{f: 3, c: 53893}, {f: 7, c: 53897}, {f: 3, c: 53906}, {f: 6, c: 53910},
{f: 3, c: 53917}, {f: 3, c: 53921}, {f: 7, c: 53925}, {f: 4, c: 53933},
{f: 6, c: 53938}, {f: 2, c: 53946}, {f: 2, c: 53949}, 53953,
8736, 8735, 8895, 13266, 13265, 8747, 8750, 8757, 8756, 9792, 9794, 9793,
9737, 8593, 8595, 8594, 8592, {f: 2, c: 8598}, 8601, 8600, 8741, 8739, 0,
0, 65295, 65340, 65284, 165, 12306, {f: 2, c: 162}, 65285, 65312, 8451,
8457, {f: 3, c: 65129}, 13269, {f: 3, c: 13212}, 13262, 13217,
{f: 2, c: 13198}, 13252, 176, [20825, 58834], [20827, 58835],
[20830, 58837], [20829, 58836], 20833, 20835, 21991, [29929, 58044],
[31950, 58191], {f: 8, c: 9601}, 9615, 9614, 9613, 9612, 9611, 9610, 9609,
9532, 9524, 9516, 9508, 9500, 9620, 9472, 9474, 9621, 9484, 9488, 9492,
9496, {f: 2, c: 9581}, 9584, 9583, 9552, 9566, 9578, 9569, {f: 2, c: 9698},
9701, 9700, {f: 3, c: 9585}, {f: 10, c: 65296}, {f: 10, c: 8544},
{f: 9, c: 12321}, 0, [21316, 57443], 0, {f: 26, c: 65313},
{f: 26, c: 65345}, {f: 17, c: 913}, {f: 7, c: 931}, {f: 17, c: 945},
{f: 7, c: 963}, {f: 37, c: 12549}, 729, 714, 711, 715, [9312, 63153],
[9313, 63154], [9314, 63155], [9315, 63156], [9316, 63157], [9317, 63158],
[9318, 63159], [9319, 63160], [9320, 63161], [9321, 63162], [9332, 63163],
[9333, 63164], [9334, 63165], [9335, 63166], [9336, 63167], [9337, 63168],
[9338, 63169], [9339, 63170], [9340, 63171], [9341, 63172], [8560, 63173],
[8561, 63174], [8562, 63175], [8563, 63176], [8564, 63177], [8565, 63178],
[8566, 63179], [8567, 63180], [8568, 63181], [8569, 63182], [12033, 20008],
[12034, 20022, 63183], [12035, 20031, 63184], [12037, 20101, 63185],
[12039, 20128, 63186], [12044, 20866, 63187], [12045, 20886, 63188],
[12046, 20907, 63189], [12051, 21241, 63190], [12054, 21304, 63191],
[12057, 21353, 63192], [12059, 21430, 63193],
[12065, 12066, 22786, 22794, 63194], [12071, 23424, 63195],
[12078, 24027, 63196], [12083, 24186, 63197], [12084, 24191, 63198],
[12085, 24308], [12089, 24400, 63200], [12090, 24417, 63201],
[12097, 25908, 63202], [12102, 26080], [12135, 30098, 63204],
[12136, 30326], [12193, 36789, 63206], [12202, 38582], {f: 32, c: 9216},
9249, [12032, 19968], [12036, 20057], 19969, 19971, 20035, 20061, 20102,
[12038, 20108], [12040, 20154], [12041, 20799], [12042, 20837],
[12043, 20843], [12047, 20960], [12049, 20992], 20993, [12050, 21147],
[12052, 21269], [12055, 21313], [12056, 21340], [12060, 21448], 19977,
19979, 19976, 19978, 20011, 20024, 20961, 20037, 20040, 20063, 20062,
20110, 20129, [20800, 64012], 20995, 21242, 21315, 21449, [12061, 21475],
[12063, 22303], [12064, 22763], [12067, 22805], [12068, 22823],
[12069, 22899], [12070, 23376], 23377, 23379, [12072, 23544],
[12073, 23567], [12074, 23586], [12075, 23608], [12077, 23665], 24029,
[12079, 24037], [12080, 24049], {f: 2, c: 24050}, [12081, 24062],
[12082, 24178], [12086, 24318], [12087, 24331], [12088, 24339], 25165,
19985, 19984, 19981, 20013, 20016, 20025, 20043, 23609, 20104, 20113,
20117, 20114, 20116, 20130, 20161, 20160, 20163, {f: 2, c: 20166}, 20173,
{f: 2, c: 20170}, 20164, 20803, 20801, 20839, {f: 2, c: 20845}, 20844,
20887, 20982, {f: 3, c: 20998}, 21243, {f: 2, c: 21246}, 21270, 21305,
21320, 21319, 21317, 21342, 21380, 21451, 21450, 21453, 22764, 22825,
22827, 22826, 22829, 23380, 23569, 23588, 23610, 23663, 24052, 24187,
24319, {f: 2, c: 24340}, [12092, 24515], [12093, 25096], [12094, 25142],
[12095, 25163], 25166, [12096, 25903], [12098, 25991], [12099, 26007],
[12100, 26020], [12101, 26041], [12103, 26085], [12104, 26352],
[12105, 26376], [12106, 26408], [12107, 27424], [12108, 27490],
[12109, 27513], [12111, 27595], [12112, 27604], [12113, 27611],
[12114, 27663], [12116, 27700], [12117, 28779], [12118, 29226],
[12119, 29238], [12120, 29243], [12122, 29255], [12123, 29273],
[12124, 29275], [12125, 29356], 29579, 19993, 19990, 19989, 19988, 19992,
20027, 20045, 20047, 20046, 20197, 20184, {f: 4, c: 20180},
{f: 2, c: 20195}, 20185, 20190, 20805, 20804, {f: 2, c: 20873}, 20908,
{f: 2, c: 20985}, 20984, 21002, 21152, 21151, [21253, 57435], 21254, 21271,
21277, 20191, 21322, 21321, 21345, 21344, 21359, 21358, 21435, 21487,
21476, 21491, 21484, 21486, 21481, 21480, 21500, 21496, 21493, 21483,
21478, 21482, 21490, 21489, 21488, 21477, 21485, 21499, 22235, 22234,
22806, 22830, 22833, 22900, 22902, 23381, 23427, 23612, 24040, 24039,
24038, {f: 2, c: 24066}, 24179, 24188, 24321, 24344, 24343, 24517, 25098,
{f: 2, c: 25171}, 25170, 25169, 26021, 26086, 26414, 26412,
{f: 2, c: 26410}, 26413, 27491, 27597, 27665, 27664, 27704, 27713, 27712,
27710, 29359, [12126, 29572], [12127, 29577], [12128, 29916],
[12129, 29926], [12130, 29976], [12131, 29983], [12132, 29992], 29993,
[12133, 30000], {f: 3, c: 30001}, [12134, 30091], [12137, 30333],
[12138, 30382], [12139, 30399], [12140, 30446], [12141, 30683],
[12142, 30690], [12143, 30707], [12144, 31034], [12146, 31166],
[12147, 31348], [12148, 31435], {f: 2, c: 19998}, {f: 2, c: 20050}, 20073,
20121, 20132, 20134, 20133, 20223, 20233, 20249, 20234, 20245, 20237,
{f: 2, c: 20240}, 20239, 20210, 20214, 20219, 20208, 20211, 20221, 20225,
20235, 20809, 20807, 20806, 20808, 20840, 20849, 20877, 20912, 21015,
{f: 2, c: 21009}, 21006, 21014, 21155, 21256, 21281, 21280,
{f: 2, c: 21360}, 21513, 21519, 21516, 21514, 21520, 21505, 21515, 21508,
21521, 21517, 21512, 21507, 21518, 21510, 21522, 22240, 22238, 22237,
22323, 22320, 22312, 22317, 22316, 22319, 22313, {f: 2, c: 22809},
{f: 2, c: 22839}, 22916, 22904, 22915, 22909, 22905, 22914, 22913,
{f: 2, c: 23383}, {f: 2, c: 23431}, 23429, 23433, 23546, 23574, 23673,
24030, 24070, 24182, 24180, 24335, 24347, 24537, 24534, 25102,
{f: 2, c: 25100}, 25104, 25187, 25179, 25176, 25910, 26089, 26088,
{f: 2, c: 26092}, {f: 2, c: 26354}, 26377, 26429, 26420, 26417, 26421,
27425, 27492, 27515, 27670, 27741, 27735, 27737, {f: 2, c: 27743}, 27728,
27733, 27745, 27739, {f: 2, c: 27725}, 28784, 29279, 29277, 30334,
[12149, 31481], [12150, 31859], [12151, 31992], [12152, 32566],
[12154, 32650], [12155, 32701], [12156, 32769], 32771, [12157, 32780],
[12158, 32786], [12159, 32819], [12160, 32895], [12161, 32905],
{f: 2, c: 32907}, [12162, 33251], [12163, 33258], [12164, 33267],
[12165, 33276], [12166, 33292], [12167, 33307], [12168, 33311],
[12169, 33390], [12170, 33394], 33406, [12173, 34411], [12174, 34880],
[12175, 34892], [12176, 34915], 35199, 38433, 20018, 20136, 20301, 20303,
20295, 20311, 20318, 20276, 20315, 20309, 20272, {f: 2, c: 20304}, 20285,
20282, 20280, 20291, 20308, 20284, 20294, 20323, 20316, 20320, 20271,
20302, 20278, 20313, 20317, 20296, 20314, 20812, 20811, 20813, 20853,
{f: 2, c: 20918}, 21029, 21028, {f: 2, c: 21033}, 21032, 21163,
{f: 2, c: 21161}, 21164, 21283, 21363, 21365, 21533, 21549, 21534, 21566,
21542, 21582, 21543, 21574, 21571, 21555, 21576, 21570, 21531, 21545,
21578, 21561, 21563, 21560, 21550, {f: 2, c: 21557}, 21536, 21564, 21568,
21553, 21547, 21535, 21548, 22250, 22256, 22244, 22251, 22346, 22353,
22336, 22349, 22343, 22350, 22334, 22352, 22351, 22331, 22767, 22846,
22941, 22930, 22952, 22942, 22947, 22937, 22934, 22925, 22948, 22931,
22922, 22949, 23389, 23388, {f: 2, c: 23386}, 23436, 23435, 23439, 23596,
{f: 2, c: 23616}, 23615, 23614, {f: 2, c: 23696}, 23700, 23692, 24043,
24076, 24207, 24199, 24202, 24311, 24324, 24351, 24420, 24418, 24439,
24441, 24536, 24524, 24535, 24525, 24561, 24555, 24568, 24554, 25106,
25105, 25220, 25239, 25238, 25216, 25206, 25225, 25197, 25226, 25212,
25214, 25209, 25203, 25234, 25199, 25240, 25198, 25237, 25235, 25233,
25222, 25913, 25915, 25912, 26097, 26356, 26463, {f: 4, c: 26446}, 26460,
26454, [26462, 57801], 26441, 26438, 26464, 26451, 26455, 27493, 27599,
27714, 27742, 27801, 27777, {f: 2, c: 27784}, 27781, 27803, 27754, 27770,
27792, 27760, 27788, 27752, 27798, 27794, 27773, 27779, 27762, 27774,
27764, 27782, 27766, 27789, 27796, 27800, 27778, 28790, {f: 2, c: 28796},
28792, 29282, 29281, 29280, 29380, 29378, 29590, 29996, 29995,
{f: 2, c: 30007}, 30338, 30447, 30691, 31169, 31168, 31167, 31350, 31995,
32597, 32918, 32915, 32925, 32920, 32923, 32922, 32946, 33391, 33426,
33419, 33421, [12178, 35211], [12179, 35282], [12180, 35328],
[12181, 35895], [12182, 35910], [12183, 35925], [12185, 35997],
[12186, 36196], [12187, 36208], [12188, 36275], [12189, 36523],
[12190, 36554], [12191, 36763], [12192, 36784], 36802, 36806, 36805, 36804,
24033, [12194, 37009], 37026, 37034, 37030, 37027, [12195, 37193],
[12196, 37318], [12197, 37324], 38450, 38446, 38449, 38442, 38444, 20006,
20054, 20083, 20107, 20123, 20126, {f: 2, c: 20139}, 20335, 20381, 20365,
20339, 20351, 20332, 20379, 20363, 20358, 20355, 20336, 20341, 20360,
20329, 20347, 20374, 20350, 20367, 20369, 20346, 20820, 20818, 20821,
20841, 20855, 20854, 20856, 20925, 20989, 21051, 21048, 21047, 21050,
21040, 21038, 21046, 21057, 21182, 21179, 21330, 21332, 21331, 21329,
21350, {f: 3, c: 21367}, 21462, 21460, 21463, 21619, 21621, 21654, 21624,
21653, 21632, 21627, 21623, 21636, 21650, 21638, 21628, 21648, 21617,
21622, 21644, 21658, 21602, 21608, 21643, 21629, 21646, 22266, 22403,
22391, 22378, 22377, 22369, 22374, 22372, 22396, 22812, 22857,
{f: 2, c: 22855}, 22852, 22868, 22974, 22971, 22996, 22969, 22958, 22993,
22982, 22992, 22989, 22987, 22995, 22986, 22959, 22963, 22994, 22981,
23391, 23396, 23395, 23447, 23450, 23448, 23452, 23449, 23451, 23578,
23624, {f: 2, c: 23621}, 23735, 23713, 23736, 23721, 23723, 23729, 23731,
24088, 24090, 24086, 24085, 24091, 24081, 24184, 24218, 24215, 24220,
{f: 2, c: 24213}, 24310, {f: 2, c: 24358}, 24361, {f: 2, c: 24448}, 24447,
24444, 24541, 24544, 24573, 24565, 24575, 24591, 24596, 24623, 24629,
24598, 24618, 24597, 24609, 24615, 24617, 24619, 24603, 25110, 25109,
25151, 25150, 25152, 25215, 25289, 25292, 25284, 25279, 25282, 25273,
25298, 25307, 25259, {f: 2, c: 25299}, 25291, 25288, 25256, 25277, 25276,
[25296, 60582], 25305, 25287, 25293, 25269, 25306, 25265, 25304,
{f: 2, c: 25302}, 25286, 25260, [25294, 61010], 25918, 26023, 26044, 26106,
26132, 26131, 26124, 26118, 26114, 26126, 26112, 26127, 26133, 26122,
26119, 26381, 26379, 26477, 26507, 26517, 26481, 26524, 26483, 26487,
26503, 26525, 26519, {f: 2, c: 26479}, 26495, 26505, 26494, 26512, 26485,
26522, 26515, 26492, 26474, 26482, 27427, {f: 2, c: 27494}, 27519, 27667,
27675, 27875, 27880, 27891, 27825, 27852, 27877, 27827, {f: 2, c: 27837},
27836, 27874, 27819, 27861, 27859, 27832, 27844, 27833, 27841, 27822,
27863, 27845, 27889, 27839, 27835, 27873, 27867, 27850, 27820, 27887,
27868, 27862, 27872, 28821, 28814, 28818, 28810, 28825, {f: 2, c: 29228},
29240, 29256, 29287, 29289, 29376, 29390, 29401, 29399, 29392, 29609,
29608, 29599, 29611, 29605, 30013, 30109, {f: 2, c: 30105}, 30340, 30402,
30450, 30452, 30693, 30717, 31038, {f: 2, c: 31040}, 31177, 31176, 31354,
31353, 31482, 31998, 32596, 32652, 32651, [32773, 58236], 32954, 32933,
32930, 32945, 32929, 32939, 32937, 32948, 32938, 32943, 33253, 33278,
33293, 33459, 33437, 33433, 33453, 33469, 33439, 33465, 33457, 33452,
33445, 33455, 33464, 33443, 33456, 33470, 33463, 34382, 34417, 21021,
34920, 36555, 36814, 36820, 36817, 37045, 37048, 37041, 37046, 37319,
[12198, 37329], [12199, 38263], [12200, 38272], [12201, 38428], 38464,
38463, 38459, 38468, 38466, [12203, 38585], [12204, 38632], 38738,
[12206, 38750], 20127, {f: 2, c: 20141}, 20449, 20405, 20399, 20415, 20448,
20433, 20431, 20445, 20419, 20406, 20440, 20447, 20426, 20439, 20398,
20432, 20420, 20418, 20442, 20430, 20446, 20407, 20823, 20882, 20881,
20896, 21070, 21059, 21066, 21069, 21068, 21067, 21063, 21191, 21193,
21187, 21185, 21261, 21335, 21371, 21402, 21467, 21676, 21696, 21672,
21710, 21705, 21688, 21670, 21683, 21703, 21698, 21693, 21674, 21697,
21700, 21704, 21679, 21675, 21681, 21691, 21673, 21671, 21695, 22271,
22402, 22411, 22432, 22435, 22434, 22478, 22446, 22419, 22869, 22865,
22863, 22862, 22864, 23004, 23000, 23039, 23011, 23016, 23043, 23013,
23018, 23002, 23014, 23041, 23035, 23401, 23459, 23462, 23460, 23458,
23461, 23553, {f: 2, c: 23630}, 23629, 23627, 23769, 23762, 24055, 24093,
24101, 24095, 24189, 24224, 24230, 24314, 24328, 24365, 24421, 24456,
24453, {f: 2, c: 24458}, 24455, 24460, 24457, 24594, 24605, 24608, 24613,
24590, 24616, 24653, 24688, 24680, [24674, 60712], 24646, 24643, 24684,
24683, 24682, 24676, 25153, 25308, 25366, 25353, 25340, 25325, 25345,
25326, 25341, 25351, 25329, 25335, 25327, 25324, 25342, 25332, 25361,
25346, 25919, 25925, 26027, 26045, 26082, 26149, 26157, 26144, 26151,
26159, 26143, 26152, 26161, 26148, 26359, 26623, 26579, 26609, 26580,
26576, 26604, 26550, 26543, 26613, 26601, 26607, 26564, 26577, 26548,
26586, 26597, 26552, 26575, 26590, 26611, 26544, 26585, 26594, 26589,
26578, 27498, 27523, 27526, 27573, 27602, 27607, 27679, 27849, 27915,
34468, 34473, 34444, 34467, 34460, 34928, 34935, {f: 2, c: 34945}, 34941,
34937, 35352, 35344, 35342, 35340, 35349, 35338, 35351, 35347, 35350,
35343, 35345, 35912, 35962, 35961, {f: 2, c: 36001}, [36215, 58442], 36524,
36562, 36564, 36559, 36785, 36865, 36870, 36855, 36864, 36858, 36852,
36867, 36861, 36869, 36856, 37013, 37089, 37085, 37090, 37202, 37197,
37196, 37336, 37341, 37335, 37340, 37337, 38275, {f: 2, c: 38498}, 38497,
38491, 38493, 38500, 38488, 38494, 38587, 39138, [12218, 39340],
[12219, 39592], [12220, 39640], [12222, 39717], [12224, 39730],
[12225, 39740], 20094, 20602, [20605, 57382], 20572, 20551, 20547, 20556,
20570, 20553, 20581, 20598, 20558, 20565, 20597, 20596, 20599, 20559,
20495, 20591, 20589, 20828, 20885, 20976, 21098, 21103, 21202, 21209,
21208, 21205, 21264, 21263, 21273, {f: 2, c: 21311}, 21310, 21443, 26364,
21830, 21866, 21862, 21828, 21854, 21857, 21827, 21834, 21809, 21846,
21839, 21845, 21807, 21860, 21816, 21806, 21852, 21804, 21859, 21811,
21825, 21847, 22280, 22283, 22281, 22495, 22533, 22538, 22534, 22496,
22500, 22522, 22530, 22581, 22519, 22521, 22816, 22882, 23094, 23105,
23113, 23142, 23146, 23104, 23100, 23138, 23130, 23110, 23114, 23408,
23495, 23493, 23492, 23490, 23487, 23494, 23561, 23560, 23559, 23648,
{f: 2, c: 23644}, 23815, 23814, 23822, 23835, 23830, 23842, 23825, 23849,
23828, 23833, 23844, 23847, 23831, 24034, 24120, 24118, 24115, 24119,
{f: 2, c: 24247}, 24246, 24245, 24254, 24373, 24375, 24407, 24428, 24425,
24427, 24471, 24473, 24478, 24472, 24481, 24480, 24476, 24703, 24739,
24713, 24736, 24744, 24779, 24756, 24806, 24765, 24773, 24763, 24757,
24796, 24764, 24792, 24789, 24774, 24799, 24760, 24794, 24775,
{f: 2, c: 25114}, 25160, 25504, 25511, 25458, 25494, 25506, 25509, 25463,
25447, 25496, 25514, 25457, 25513, 25481, 25475, 25499, 25451, 25512,
25476, 25480, 25497, 25505, 25516, 25490, 25487, 25472, 25467, 25449,
25448, 25466, 25949, 25942, 25937, 25945, 25943, 21855, 25935, 25944,
25941, 25940, 26012, 26011, 26028, 26063, {f: 2, c: 26059}, 26062, 26205,
26202, 26212, 26216, 26214, 26206, 26361, 21207, 26395, 26753, 26799,
26786, 26771, 26805, 26751, 26742, 26801, 26791, 26775, 26800, 26755,
26820, 26797, 26758, 26757, 26772, 26781, 26792, 26783, 26785, 26754,
27442, 27578, {f: 2, c: 27627}, 27691, 28046, 28092, 28147, 28121, 28082,
28129, 28108, 28132, 28155, 28154, 28165, 28103, 28107, 28079, 28113,
28078, 28126, 28153, 28088, 28151, 28149, 28101, 28114, 28186, 28085,
28122, 28139, 28120, 28138, 28145, 28142, 28136, 28102, 28100, 28074,
28140, 28095, 28134, 28921, {f: 2, c: 28937}, 28925, 28911, 29245, 29309,
29313, 29468, 29467, 29462, 29459, 29465, 29575, 29701, 29706, 29699,
29702, 29694, 29709, 29920, {f: 2, c: 29942}, 29980, 29986,
{f: 2, c: 30053}, 30050, 30064, 30095, {f: 2, c: 30164}, 30133, 30154,
30157, 30350, 30420, 30418, 30427, 30519, 30526, 30524, 30518, 30520,
30522, 30827, 30787, 30798, 31077, 31080, 31085, 31227, 31378, 31381,
31520, 31528, 31515, 31532, 31526, 31513, 31518, 31534, 31890, 31895,
31893, 32070, 32067, 32113, 32046, 32057, 32060, 32064, 32048, 32051,
32068, 32047, 32066, 32050, 32049, 32573, 32670, 32666, 32716, 32718,
32722, 32796, 32842, 32838, 33071, 33046, 33059, 33067, 33065, 33072,
33060, 33282, 33333, 33335, 33334, 33337, 33678, 33694, 33688, 33656,
33698, 33686, 33725, 33707, 33682, 33674, 33683, 33673, 33696, 33655,
{f: 2, c: 33659}, 33670, 33703, 34389, 24426, 34503, 34496, 34486, 34500,
34485, 34502, 34507, 34481, 34479, 34505, 34899, 34974, 34952, 34987,
34962, 34966, 34957, 34955, 35219, 35215, 35370, 35357, 35363, 35365,
35377, 35373, 35359, 35355, 35362, 35913, 35930, 36009, 36012, 36011,
36008, 36010, 36007, 36199, 36198, 36286, 36282, 36571, 36575, 36889,
36877, 36890, 36887, 36899, 36895, 36893, 36880, 36885, 36894, 36896,
36879, 36898, 36886, 36891, 36884, 37096, 37101, [37117, 58488], 37207,
37326, 37365, 37350, 37347, 37351, 37357, 37353, 38281, 38506, 38517,
38515, 38520, 38512, 38516, {f: 2, c: 38518}, 38508, 38592, 38634, 38633,
31456, 31455, {f: 2, c: 38914}, [12226, 39770], [12227, 40165],
[12228, 40565], [12229, 40575], [12230, 40613], [12231, 40635], 20642,
20621, 20613, 20633, 20625, 20608, 20630, 20632, 20634, 26368, 20977,
21106, {f: 2, c: 21108}, 21097, 21214, 21213, 21211, 21338, 21413, 21883,
21888, 21927, 21884, 21898, 21917, 21912, 21890, 21916, 21930, 21908,
21895, 21899, 21891, 21939, 21934, 21919, 21822, 21938, 21914, 21947,
21932, 21937, 21886, 21897, 21931, 21913, 22285, 22575, 22570, 22580,
22564, {f: 2, c: 22576}, 22561, 22557, 22560, {f: 2, c: 22777}, 22880,
[23159, 57587], 23194, 23167, 23186, 23195, 23207, 23411, 23409, 23506,
23500, 23507, 23504, {f: 2, c: 23562}, 23601, 23884, 23888, 23860, 23879,
24061, 24133, 24125, 24128, 24131, 24190, 24266, {f: 2, c: 24257}, 24260,
24380, 24429, {f: 2, c: 24489}, 24488, 24785, 24801, 24754, 24758, 24800,
24860, 24867, 24826, 24853, 24816, 24827, 24820, 24936, 24817, 24846,
24822, 24841, 24832, 24850, 25119, 25161, 25507, 25484, 25551, 25536,
25577, 25545, 25542, 25549, 25554, 25571, 25552, 25569, 25558,
{f: 2, c: 25581}, 25462, 25588, 25578, 25563, 25682, 25562, 25593, 25950,
25958, {f: 2, c: 25954}, 26001, 26000, 26031, 26222, 26224, [26228, 57786],
26230, 26223, 26257, 26234, 26238, 26231, {f: 2, c: 26366}, 26399, 26397,
26874, 26837, 26848, 26840, 26839, 26885, 26847, 26869, 26862, 26855,
26873, 26834, 26866, 26851, 26827, 26829, 26893, 26898, 26894, 26825,
26842, 26990, 26875, 27454, 27450, 27453, 27544, 27542, 27580, 27631,
{f: 2, c: 27694}, 27692, [28207, 57904], 28216, 28244, 28193, 28210, 28263,
28234, 28192, 28197, 28195, 28187, 28251, 28248, 28196, 28246, 28270,
28205, 28198, 28271, 28212, 28237, 28218, 28204, 28227, [28189, 57901],
28222, 28363, 28297, 28185, 28238, 28259, 28228, 28274, 28265, 28255,
{f: 2, c: 28953}, 28966, 28976, 28961, 28982, [29038, 57958], 28956, 29260,
29316, 29312, 29494, 29477, 29492, 29481, 29754, 29738, 29747, 29730,
29733, {f: 2, c: 29749}, 29748, 29743, 29723, 29734, 29736,
{f: 2, c: 29989}, 30059, 30058, 30178, 30171, 30179, 30169, 30168, 30174,
30176, {f: 2, c: 30331}, 30358, 30355, 30388, 30428, 30543, 30701, 30813,
30828, 30831, 31245, 31240, 31243, 31237, 31232, 31384, 31383, 31382,
31461, 31459, 31561, 31574, 31558, 31568, 31570, 31572, 31565, 31563,
31567, [31569, 60510], 31903, 31909, 32094, 32080, 32104, 32085, 32043,
32110, 32114, 32097, 32102, 32098, 32112, 32115, 21892, {f: 2, c: 32724},
32779, 32850, 32901, 33109, 33108, 33099, 33105, 33102, 33081, 33094,
33086, 33100, 33107, 33140, 33298, 33308, 33769, 33795, 33784, 33805,
33760, 33733, 33803, [33729, 58309], 33775, 33777, 33780, 33879, 33802,
33776, 33804, 33740, 33789, 33778, 33738, 33848, 33806, 33796, 33756,
33799, 33748, 33759, 34395, 34527, 34521, 34541, 34516, 34523, 34532,
34512, 34526, 34903, {f: 2, c: 35009}, 34993, 35203, 35222, 35387, 35424,
35413, 35422, 35388, 35393, 35412, 35419, 35408, 35398, 35380, 35386,
35382, 35414, 35937, 35970, 36015, 36028, 36019, 36029, 36033, 36027,
36032, 36020, 36023, 36022, 36031, 36024, 36234, 36229, 36225, 36302,
36317, 36299, 36314, 36305, 36300, 36315, 36294, 36603, 36600, 36604,
36764, 36910, 36917, 36913, 36920, 36914, 36918, 37122, 37109, 37129,
37118, 37219, 37221, 37327, {f: 2, c: 37396}, 37411, 37385, 37406, 37389,
37392, 37383, 37393, 38292, 38287, 38283, 38289, 38291, 38290, 38286,
38538, 38542, 38539, 38525, {f: 2, c: 38533}, 38541, 38514, 38532, 38593,
38597, 38596, {f: 2, c: 38598}, 38639, 38642, 38860, {f: 2, c: 38917},
38920, 39143, 39146, 39151, 39145, 39154, 39149, 39342, 39341,
[12232, 40643], [12233, 40653], [12234, 40657], 20098, 20653, 20661,
{f: 2, c: 20658}, 20677, 20670, 20652, 20663, 20667, 20655, 20679, 21119,
21111, 21117, 21215, 21222, 21220, {f: 2, c: 21218}, 21295, 21983, 21992,
21971, 21990, 21966, 21980, 21959, 21969, {f: 2, c: 21987}, 21999, 21978,
21985, {f: 2, c: 21957}, 21989, 21961, {f: 2, c: 22290}, 22622, 22609,
22616, 22615, 22618, 22612, 22635, 22604, 22637, 22602, 22626, 22610,
22603, 22887, 23233, 23241, 23244, 23230, 23229, 23228, 23219, 23234,
23218, 23913, 23919, 24140, 24185, 24265, 24264, 24338, 24409, 24492,
24494, 24858, 24847, 24904, 24863, 24819, 24859, 24825, 24833, 24840,
24910, 24908, 24900, 24909, 24894, 24884, 24871, 24845, 24838, 24887,
{f: 2, c: 25121}, 25619, 25662, 25630, 25642, 25645, 25661, 25644, 25615,
25628, 25620, 25613, 25654, {f: 2, c: 25622}, 25606, 25964, 26015, 26032,
26263, 26249, {f: 2, c: 26247}, 26262, 26244, 26264, 26253, 26371, 27028,
26989, 26970, 26999, 26976, 26964, 26997, 26928, 27010, 26954, 26984,
26987, 26974, 26963, 27001, 27014, 26973, 26979, 26971, 27463, 27506,
27584, 27583, 27603, 27645, 28322, 28335, 28371, 28342, 28354, 28304,
28317, 28359, 28357, 28325, 28312, 28348, 28346, 28331, 28369, 28310,
28316, 28356, 28372, 28330, 28327, 28340, 29006, 29017, 29033, 29028,
29001, 29031, 29020, 29036, 29030, 29004, 29029, 29022, 28998, 29032,
29014, 29242, 29266, 29495, 29509, 29503, 29502, 29807, 29786, 29781,
29791, 29790, 29761, 29759, 29785, 29787, [29788, 58019], 30070, 30072,
30208, 30192, 30209, 30194, 30193, 30202, 30207, 30196, 30195,
{f: 2, c: 30430}, 30555, 30571, 30566, 30558, 30563, 30585, 30570, 30572,
30556, 30565, 30568, 30562, 30702, 30862, 30896, {f: 2, c: 30871}, 30860,
30857, 30844, 30865, 30867, 30847, 31098, 31103, 31105, 33836, 31165,
31260, 31258, 31264, 31252, 31263, 31262, {f: 2, c: 31391}, 31607, 31680,
31584, 31598, 31591, 31921, 31923, 31925, 32147, 32121, 32145, 32129,
32143, 32091, 32622, {f: 2, c: 32617}, 32626, 32681, 32680, 32676, 32854,
32856, 32902, 32900, 33137, 33136, 33144, 33125, 33134, 33139, 33131,
{f: 2, c: 33145}, 33126, 33285, 33351, 33922, 33911, 33853, 33841, 33909,
33894, 33899, 33865, 33900, 33883, 33852, 33845, 33889, 33891, 33897,
33901, 33862, 34398, 34396, 34399, 34553, 34579, 34568, 34567, 34560,
34558, 34555, {f: 2, c: 34562}, 34566, 34570, 34905, 35039, 35028, 35033,
35036, 35032, 35037, 35041, 35018, 35029, 35026, 35228, 35299, 35435,
{f: 2, c: 35442}, 35430, 35433, 35440, 35463, 35452, 35427, 35488, 35441,
35461, 35437, 35426, 35438, 35436, 35449, 35451, 35390, 35432, 35938,
35978, 35977, 36042, {f: 2, c: 36039}, 36036, 36018, 36035, 36034, 36037,
36321, 36319, 36328, 36335, 36339, 36346, 36330, 36324, 36326, 36530,
36611, 36617, 36606, 36618, 36767, 36786, 36939, 36938, 36947, 36930,
36948, 36924, 36949, 36944, 36935, 36943, 36942, 36941, 36945, 36926,
36929, 37138, 37143, 37228, 37226, 37225, 37321, 37431, 37463, 37432,
37437, 37440, 37438, 37467, 37451, 37476, 37457, 37428, 37449, 37453,
37445, 37433, 37439, 37466, 38296, 38552, {f: 2, c: 38548}, 38605, 38603,
{f: 2, c: 38601}, 38647, 38651, 38649, 38646, 38742, 38772, 38774,
{f: 2, c: 38928}, 38931, 38922, 38930, 38924, 39164, 39156,
{f: 2, c: 39165}, 39347, 39345, 39348, 39649, 40169, 40578, [12237, 40718],
[12238, 40723], [12239, 40736], 20711, 20718, 20709, 20694, [20717, 60903],
20698, 20693, 20687, 20689, 20721, 20686, 20713, 20834, 20979, 21123,
21122, 21297, 21421, 22014, 22016, 22043, 22039, 22013, 22036, 22022,
22025, {f: 2, c: 22029}, 22007, 22038, 22047, 22024, 22032, 22006, 22296,
22294, 22645, 22654, 22659, 22675, 22666, 22649, 22661, 22653, 22781,
22821, 22818, 22820, 22890, 22889, 23265, 23270, 23273, 23255, 23254,
23256, 23267, 23413, 23518, 23527, 23521, {f: 2, c: 23525}, 23528, 23522,
23524, 23519, 23565, 23650, 23940, 23943, 24155, 24163, 24149, 24151,
24148, 24275, 24278, 24330, 24390, 24432, 24505, 24903, 24895, 24907,
24951, {f: 2, c: 24930}, 24927, 24922, 24920, 24949, 25130, 25735, 25688,
25684, 25764, 25720, 25695, 25722, 25681, 25703, 25652, 25709, 25723,
25970, 26017, 26071, 26070, 26274, 26280, 26269, 27036, 27048, 27029,
27073, 27054, 27091, 27083, 27035, 27063, 27067, 27051, 27060, 27088,
27085, 27053, 27084, 27046, 27075, 27043, 27465, 27468, 27699, 28467,
28436, 28414, 28435, 28404, 28457, 28478, 28448, 28460, 28431, 28418,
28450, 28415, 28399, 28422, 28465, 28472, 28466, 28451, 28437, 28459,
28463, 28552, 28458, 28396, 28417, 28402, 28364, 28407, 29076, 29081,
29053, 29066, 29060, 29074, 29246, 29330, 29334, 29508, 29520, 29796,
29795, 29802, 29808, 29805, 29956, 30097, 30247, 30221, 30219, 30217,
30227, 30433, 30435, 30596, 30589, 30591, 30561, 30913, 30879, 30887,
30899, 30889, 30883, {f: 2, c: 31118}, 31117, 31278, 31281, 31402, 31401,
31469, 31471, 31649, 31637, 31627, 31605, 31639, 31645, 31636, 31631,
[31672, 58170], 31623, 31620, 31929, {f: 2, c: 31933}, 32187, 32176, 32156,
{f: 2, c: 32189}, 32160, 32202, 32180, 32178, 32177, 32186, 32162, 32191,
32181, 32184, 32173, [32210, 58202], 32199, 32172, 32624, {f: 2, c: 32736},
32735, 32862, 32858, 32903, 33104, 33152, 33167, 33160, 33162, 33151,
33154, 33255, 33274, 33287, 33300, 33310, 33355, 33993, 33983, 33990,
33988,
33980,
34645,
35098,
35498,
36051,
36627,
36955,
37504,
38305,
38610,
39173,
40180,
20731,
{f: 3,
22079,
22656,
23291,
{f: 2,
24285,
24925,
24974,
25758,
25746,
{f: 2,
27166,
27153,
28518,
28516,
29096,
30079,
30436,
30910,
31407,
31692,
32227,
32687,
34074,
34085,
34649,
35093,
35529,
35918,
{f: 2,
36381,
36639,
36973,
37573,
37616,
38795,
39389,
{f: 2,
40617,
20757,
22121,
22134,
23566,
25032,
25794,
26308,
27204, 27234, 27233, 27211, 27207, 27189, 27231, 27208, 27481, 27511,
27653, 28610, 28593, 28577, 28611, 28580, 28609, 28583, 28595, 28608,
28601, [28598, 60318], 28582, 28576, 28596, 29118, 29129, 29136, 29138,
29128, 29141, 29113, 29134, 29145, 29148, {f: 2, c: 29123}, 29544, 29852,
29859, 29848, 29855, 29854, 29922, {f: 2, c: 29964}, 30260, 30264, 30266,
30439, 30437, 30624, {f: 2, c: 30622}, 30629, 30952, 30938, 30956, 30951,
31142, {f: 2, c: 31309}, 31302, 31308, 31307, 31418, 31705, 31761, 31689,
31716, 31707, 31713, 31721, 31718, {f: 2, c: 31957}, 32266, 32273, 32264,
32283, 32291, 32286, [32285, 58211], 32265, 32272, 32633, 32690,
{f: 2, c: 32752}, 32750, [32808, 58239], 33203, 33193, 33192, 33275, 33288,
{f: 2, c: 33368}, 34122, 34137, 34120, {f: 2, c: 34152}, 34115, 34121,
34157, 34154, 34142, 34691, 34719, 34718, 34722, 34701, 34913, 35114,
35122, 35109, 35115, 35105, 35242, [35238, 58391], 35558, 35578, 35563,
35569, 35584, 35548, 35559, 35566, 35582, {f: 2, c: 35585}, 35575, 35565,
35571, 35574, 35580, 35947, 35949, 35987, 36084, 36420, 36401, 36404,
36418, 36409, 36405, 36667, 36655, 36664, 36659, 36776, 36774, 36981,
36980, 36984, 36978, 36988, 36986, 37172, 37266, 37664, 37686, 37624,
37683, 37679, 37666, 37628, 37675, 37636, 37658, 37648, 37670, 37665,
37653, 37678, 37657, 38331, {f: 2, c: 38567}, 38570, 38613, 38670, 38673,
38678, 38669, 38675, 38671, 38747, [38748, 58565], 38758, 38808, 38960,
38968, 38971, 38967, 38957, 38969, 38948, 39184, 39208, 39198, 39195,
39201, 39194, 39405, 39394, 39409, 39608, 39612, 39675, 39661, 39720,
39825, 40213, 40227, 40230, 40232, 40210, 40219, 40664, 40660,
[12243, 40845], [12244, 40860], 20778, 20767, 20769, 20786, 21237, 22158,
22144, 22160, 22149, 22151, 22159, 22741, 22739, 22737, 22734, 23344,
23338, 23332, 23418, 23607, 23656, 23996, 23994, 23997, 23992, 24171,
24396, 24509, 25033, 25026, 25031, 25062, 25035, 25138, 25140, 25806,
25802, 25816, 25824, 25840, 25830, 25836, 25841, 25826, 25837,
{f: 2, c: 25986}, 26329, 26326, 27264, 27284, 27268, 27298, 27292, 27355,
27299, 27262, 27287, 27280, 27296, 27484, 27566, 27610, 27656, 28632,
28657, {f: 2, c: 28639}, 28635, 28644, 28651, 28655, 28544, 28652, 28641,
28649, 28629, 28654, 28656, 29159, [29151, 60361], 29166, 29158, 29157,
29165, 29164, 29172, 29152, 29237, 29254, 29552, 29554, 29865, 29872,
29862, 29864, 30278, 30274, 30284, 30442, 30643, 30634, 30640, 30636,
30631, 30637, 30703, 30967, 30970, 30964, 30959, 30977, 31143, 31146,
31319, 31423, 31751, 31757, 31742, 31735, 31756, 31712, 31968, 31964,
31966, 31970, 31967, 31961, 31965, 32302, 32318, 32326, 32311, 32306,
32323, 32299, 32317, 32305, 32325, 32321, 32308, 32313, 32328, 32309,
32319, 32303, 32580, 32755, 32764, {f: 2, c: 32881}, 32880, 32879, 32883,
33222, 33219, 33210, 33218, 33216, 33215, 33213, 33225, 33214, 33256,
33289, 33393, 34218, 34180, 34174, 34204, 34193, 34196, 34223, 34203,
34183, 34216, 34186, 34214, 34407, 34752, 34769, 34739, 34770, 34758,
34731, 34747, 34746, 34760, 34763, 35131, 35126, 35140, 35128, 35133,
35244, 35598, 35607, 35609, 35611, 35594, 35616, 35613, 35588, 35600,
35905, 35903, 35955, 36090, 36093, 36092, 36088, 36091, 36264, 36425,
36427, 36424, 36426, 36676, 36670, 36674, 36677, 36671, 36991, 36989,
36996, {f: 2, c: 36993}, 36992, 37177, 37283, 37278, 37276, 37709, 37762,
37672, 37749, 37706, 37733, 37707, 37656, 37758, 37740, 37723, 37744,
37722, 37716, {f: 3, c: 38346}, 38344, 38342, 38577, 38584, 38614, 38684,
38686, 38816, 38867, 38982, 39094, 39221, 39425, 39423, 39854, 39851,
39850, 39853, 40251, 40255, 40587, 40655, 40670, {f: 2, c: 40668}, 40667,
40766, 40779, 21474, 22165, 22190, 22745, 22744, 23352, 24413, 25059,
25139, 25844, 25842, 25854, 25862, {f: 2, c: 25850}, 25847, 26039, 26332,
26406, 27315, 27308, 27331, 27323, 27320, 27330, {f: 2, c: 27310}, 27487,
27512, 27567, 28681, 28683, 28670, 28678, 28666, 28689, 28687,
{f: 2, c: 29179}, 29182, 29176, 29559, 29557, 29863, 29887, 29973, 30294,
30296, 30290, 30653, 30655, {f: 2, c: 30651}, 30990, 31150,
{f: 2, c: 31329}, 31328, {f: 2, c: 31428}, 31787, 31783, 31786, 31774,
31779, 31777, 31975, {f: 2, c: 32340}, 32350, 32346, 32353, 32338, 32345,
32584, 32761, 32763, 32887, 32886, 33229, 33231, 33290, 34255, 34217,
34253,
35206,
36451,
37000,
37804,
38620,
38991,
39438,
39880,
22184,
25077,
28703,
29560,
31001,
32363,
33240,
34829,
35657,
36487,
37297,
37858,
38695,
39446,
40298,
22204,
25876,
29903,
31811,
33242,
{f: 2,
35691,
37891,
39479,
40801,
25086,
29211,
34327,
35700,
37934,
38706,
39631,
40687,
23423,
29568,
33247,
37192,
39253,
40407,
25898,
32404,
37988,
39633,
28766,
35731,
38854,
{f: 2,
34875,
40652,
36522,
38015,
[12048, 20981], [12053, 21274], [12058, 21378], 19975, 19980, 20039, 20109,
[12062, 22231], [12076, 23662], [12091, 24435], 19983, 20871, 19982, 20014,
20115, 20162, 20169, 20168, 20888, 21244, 21356, 21433, 22304, 22787,
22828, [23568, 60417], 24063, 26081, [12110, 27571], 27596, [12115, 27668],
[12121, 29247], 20017, 20028, 20200, 20188, 20201, 20193, 20189, 20186,
21004, 21001, 21276, 21324, {f: 2, c: 22306}, 22807, 22831, 23425, 23428,
23570, 23611, 23668, 23667, 24068, 24192, 24194, 24521, 25097, 25168,
27669, 27702, 27715, 27711, 27707, 29358, 29360, 29578, [12145, 31160],
32906, 38430, 20238, 20248, 20268, 20213, 20244, 20209, 20224, 20215,
20232, 20253, 20226, 20229, 20258, 20243, 20228, 20212, 20242, 20913,
21011, 21008, 21158, 21282, 21279, 21325, 21386, 21511, 22241, 22239,
22318, 22314, 22324, 22844, 22912, 22908, 22917, 22907, 22910, 22903,
22911, 23382, 23573, 23589, 23676, {f: 2, c: 23674}, 23678, 24031,
[24181, 57646], 24196, 24322, 24346, 24436, 24533, 24532, 24527, 25180,
25182, 25188, 25185, 25190, 25186, 25177, 25184, 25178, 25189, 25911,
26095, 26094, 26430, 26425, 26424, 26427, 26426, 26431, 26428, 26419,
27672, 27718, 27730, 27740, 27727, [27722, 60796], 27732, {f: 2, c: 27723},
28785, 29278, {f: 2, c: 29364}, 29582, 29994, 30335, 31349, [12153, 32593],
[12171, 33400], 33404, 33408, 33405, 33407, [12172, 34381], [12177, 35198],
37017, [37015, 59347], 37016, 37019, 37012, 38434, 38436, 38432, 38435,
20310, 20283, 20322, 20297, 20307, 20324, 20286, 20327, 20306, 20319,
20289, 20312, 20269, 20275, 20287, 20321, 20879, 20921, 21020, 21022,
21025, {f: 2, c: 21165}, 21257, 21347, 21362, {f: 2, c: 21390}, 21552,
21559, 21546, 21588, 21573, 21529, 21532, 21541, 21528, 21565, 21583,
21569, 21544, 21540, 21575, 22254, 22247, 22245, 22337, 22341, 22348,
22345, 22347, 22354, 22790, 22848, 22950, 22936, 22944, 22935, 22926,
22946, 22928, 22927, 22951, 22945, 23438, 23442, 23592, 23594, 23693,
23695, 23688, 23691, 23689, 23698, 23690, 23686, 23699, 23701, 24032,
24074, 24078, 24203, 24201, 24204, 24200, 24205, 24325, 24349, 24440,
24438, 24530, 24529, 24528, 24557, 24552, 24558, 24563, 24545, 24548,
24547, 24570, 24559, 24567, 24571, 24576, 24564, 25146, 25219, 25228,
{f: 2, c: 25230}, 25236, 25223, 25201, 25211, 25210, 25200, 25217, 25224,
25207, 25213, 25202, 25204, 26096, 26100, 26099, 26098, 26101, 26437,
26439, 26457, 26453, 26444, 26440, 26461, 26445, 26458, 26443, 27600,
{f: 2, c: 27673}, 27768, 27751, 27755, 27780, 27787, 27791, 27761, 27759,
27753, 27802, 27757, 27783, 27797, [27804, 57900], 27750, 27763, 27749,
27771, 27790, 28788, 28794, 29283, 29375, 29373, 29379, 29382, 29377,
29370, 29381, 29589, 29591, {f: 2, c: 29587}, 29586, 30010, 30009,
{f: 2, c: 30100}, 30337, 31037, 32820, 32917, 32921, 32912, 32914, 32924,
33424, 33423, 33413, 33422, 33425, 33427, 33418, {f: 2, c: 33411},
[12184, 35960], 36809, 36799, 37023, 37025, 37029, 37022, 37031, 37024,
38448, 38440, 38447, 38445, 20019, 20376, 20348, 20357, 20349, 20352,
20359, 20342, 20340, 20361, 20356, 20343, 20300, 20375, 20330, 20378,
20345, 20353, 20344, 20368, 20380, 20372, 20382, 20370, 20354, 20373,
20331, 20334, 20894, 20924, 20926, 21045, {f: 2, c: 21042}, 21062, 21041,
21180, {f: 2, c: 21258}, 21308, 21394, 21396, 21639, 21631, 21633, 21649,
21634, 21640, 21611, 21626, 21630, 21605, 21612, 21620, 21606, 21645,
21615, 21601, 21600, 21656, 21603, 21607, 21604, 22263, 22265, 22383,
22386, 22381, 22379, 22385, 22384, 22390, 22400, 22389, 22395,
{f: 2, c: 22387}, 22370, 22376, 22397, 22796, 22853, 22965, 22970, 22991,
22990, 22962, 22988, 22977, 22966, 22972, 22979, 22998, 22961, 22973,
22976, 22984, 22964, 22983, 23394, 23397, 23443, 23445, 23620, 23623,
23726, 23716, 23712, 23733, 23727, 23720, 23724, 23711, 23715, 23725,
23714, 23722, 23719, 23709, 23717, 23734, 23728, 23718, 24087, 24084,
24089, 24360, {f: 3, c: 24354}, 24404, 24450, 24446, 24445, 24542, 24549,
24621, 24614, 24601, 24626, 24587, 24628, 24586, 24599, 24627, 24602,
24606, 24620, 24610, 24589, 24592, 24622, 24595, 24593, 24588, 24585,
24604, 25108, 25149, 25261, 25268, 25297, 25278, 25258, 25270, 25290,
25262, 25267, 25263, 25275, 25257, 25264, 25272, 25917, 26024, 26043,
26121, 26108, 26116, 26130, 26120, 26107, 26115, 26123, 26125, 26117,
26109,
26491,
26521,
27614,
27879,
27869,
27824,
28804,
29385,
29606,
30092,
30715,
31997,
33472,
33466,
34416,
36821,
38458,
20444,
20409,
21401,
21678,
21618,
22427,
22867,
23030,
23028,
23774,
23750,
24228,
24633,
24640,
25295,
25336,
25923,
26163,
26610,
26603,
26562,
26542,
27522,
27949,
27962,
27919,
28831,
{f: 2,
29407,
29622,
29643,
30472,
30726,
30739,
31182,
{f: 3,
{f: 2,
32976,
32998,
33536,
33548,
34423,
35332,
37077,
38479,
20528,
20508,
20938,
{f: 2,
21778,
21765,
{f: 2,
22456,
23062,
23463,
23799,
24368,
24705,
25158,
25401,
25389,
25926,
{f: 2,
26703,
26676,
26656,
27620,
27917,
28031,
28034,
28027,
28898,
28878,
29430,
29667,
29672,
30145,
30491,
30503,
30761,
31057,
31366,
31507,
31882,
32022,
32605,
33018,
33587,
33564,
33572,
33580,
34449,
34465,
34925,
34932,
36277,
36868,
37080,
37338,
20592,
20557,
{f: 2,
21101, 21100, 21102, 21206, 21203, 21293, 21404, {f: 2, c: 21877}, 21820,
21837, 21840, 21812, 21802, 21841, 21858, 21814, 21813, 21808, 21842,
21829, 21772, 21810, 21861, 21838, 21817, 21832, 21805, 21819, 21824,
21835, 22282, 22279, 22523, 22548, 22498, 22518, 22492, 22516, 22528,
22509, 22525, 22536, 22520, 22539, 22515, 22479, 22535, 22510, 22499,
22514, 22501, 22508, 22497, 22542, 22524, 22544, 22503, 22529, 22540,
22513, 22505, 22512, 22541, 22532, 22876, 23136, 23128, 23125,
[23143, 60437], 23134, 23096, 23093, 23149, 23120, 23135, 23141, 23148,
23123, 23140, 23127, 23107, 23133, 23122, 23108, 23131, 23112, 23182,
23102, 23117, 23097, 23116, 23152, 23145, 23111, 23121, 23126, 23106,
23132, 23410, 23406, 23489, 23488, 23641, 23838, 23819, 23837, 23834,
23840, 23820, 23848, 23821, 23846, 23845, 23823, 23856, 23826, 23843,
23839, 23854, 24126, 24116, 24241, 24244, 24249, {f: 2, c: 24242}, 24374,
24376, 24475, 24470, 24479, 24714, 24720, 24710, 24766, 24752, 24762,
{f: 2, c: 24787}, 24783, 24804, 24793, 24797, 24776, 24753, 24795, 24759,
24778, 24767, 24771, 24781, 24768, 25394, 25445, 25482, 25474, 25469,
25533, 25502, 25517, 25501, 25495, 25515, 25486, 25455, 25479, 25488,
25454, 25519, 25461, 25500, 25453, 25518, 25468, 25508, 25403, 25503,
25464, 25477, 25473, 25489, 25485, 25456, 25939, 26061, 26213, 26209,
26203, 26201, 26204, 26210, 26392, 26745, 26759, 26768, 26780,
{f: 2, c: 26733}, 26798, 26795, 26966, 26735, 26787, 26796, 26793, 26741,
26740, 26802, 26767, 26743, 26770, 26748, 26731, 26738, 26794, 26752,
26737, 26750, 26779, 26774, 26763, 26784, 26761, 26788, 26744, 26747,
26769, 26764, 26762, 26749, 27446, 27443, {f: 2, c: 27447}, 27537, 27535,
{f: 2, c: 27533}, 27532, 27690, 28096, 28075, 28084, 28083, 28276, 28076,
28137, 28130, 28087, 28150, 28116, 28160, 28104, 28128, 28127, 28118,
28094, 28133, {f: 2, c: 28124}, 28123, 28148, 28106, 28093, 28141, 28144,
28090, 28117, 28098, 28111, 28105, 28112, 28146, 28115, 28157, 28119,
28109, 28131, 28091, 28922, 28941, 28919, 28951, 28916, 28940, 28912,
28932, 28915, 28944, 28924, 28927, 28934, 28947, 28928, 28920, 28918,
28939, 28930, 28942, 29310, {f: 2, c: 29307}, 29311, 29469, 29463, 29447,
29457, 29464, 29450, 29448, 29439, 29455, 29470, 29576, 29686, 29688,
29685, 29700, 29697, 29693, 29703, 29696, 29690, 29692, 29695, 29708,
29707, 29684, 29704, 30052, 30051, 30158, 30162, 30159, {f: 2, c: 30155},
30161, 30160, 30351, 30345, 30419, 30521, 30511, 30509, {f: 2, c: 30513},
30516, 30515, 30525, 30501, 30523, 30517, 30792, 30802, 30793, 30797,
30794, 30796, 30758, 30789, 30800, 31076, 31079, {f: 2, c: 31081}, 31075,
31083, 31073, 31163, 31226, 31224, {f: 2, c: 31222}, 31375, 31380, 31376,
31541, 31547, 31540, 31525, 31536, 31522, 31524, 31539, 31512, 31530,
31517, 31537, 31531, 31533, 31535, 31538, 31544, 31514, 31523, 31892,
31896, 31894, 31907, 32053, 32061, 32056, 32054, 32058, 32069, 32044,
32041, 32065, 32071, {f: 2, c: 32062}, 32074, 32059, 32040, 32611, 32661,
{f: 2, c: 32668}, 32667, {f: 2, c: 32714}, 32717, {f: 2, c: 32720}, 32711,
32719, 32713, 32799, 32798, 32795, 32839, 32835, 32840, 33048, 33061,
33049, 33051, 33069, 33055, 33068, 33054, 33057, 33045, 33063, 33053,
33058, 33297, 33336, 33331, 33338, 33332, 33330, 33396, 33680, 33699,
33704, 33677, 33658, 33651, 33700, 33652, 33679, 33665, 33685, 33689,
33653, 33684, 33705, 33661, 33667, 33676, 33693, 33691, 33706, 33675,
33662, 33701, 33711, 33672, 33687, 33712, 33663, 33702, 33671, 33710,
33654, 34393, 34390, 34495, 34487, 34498, 34497, 34501, 34490, 34480,
34504, 34489, 34483, 34488, 34508, 34484, {f: 2, c: 34491}, 34499,
{f: 2, c: 34493}, 34898, 34953, 34965, 34984, 34978, 34986, 34970, 34961,
34977, 34975, 34968, 34983, 34969, 34971, 34967, 34980, 34988, 34956,
34963, 34958, 35202, 35286, 35289, 35285, 35376, 35367, 35372, 35358,
35897, 35899, {f: 2, c: 35932}, 35965, 36005, 36221, 36219, 36217, 36284,
36290, 36281, 36287, 36289, 36568, 36574, 36573, 36572, 36567,
{f: 2, c: 36576}, 36900, 36875, 36881, 36892, 36876, 36897, 37103, 37098,
37104, 37108, {f: 2, c: 37106}, 37076, {f: 2, c: 37099}, 37097, 37206,
37208, 37210, 37203, 37205, 37356, 37364, 37361, 37363, 37368, 37348,
37369, {f: 2, c: 37354}, 37367, 37352, 37358, 38266, 38278, 38280, 38524,
38509, 38507, 38513, 38511, 38591, 38762, 38916, 39141, 39319, 20635,
20629, 20628, 20638, 20619, 20643, 20611, 20620, 20622, 20637, 20584,
20636, 20626, 20610, 20615, 20831, 20948, 21266, 21265, 21412, 21415,
21905, 21928, 21925, 21933, 21879, 22085, 21922, 21907, 21896, 21903,
21941, 21889, 21923, 21906, 21924, 21885, 21900, 21926, 21887, 21909,
21921, 21902, 22284, 22569, 22583, 22553, 22558, 22567, 22563, 22568,
22517, 22600, 22565, 22556, 22555, 22579, 22591, 22582, 22574, 22585,
22584, 22573, 22572, 22587, 22881, 23215, 23188, 23199, 23162, 23202,
23198, 23160, 23206, 23164, 23205, 23212, 23189, 23214, 23095, 23172,
23178, 23191, 23171, 23179, 23209, 23163, 23165, 23180, 23196, 23183,
23187, 23197, 23530, 23501, 23499, 23508, 23505, 23498, 23502, 23564,
23600, 23863, 23875, 23915, 23873, 23883, 23871, 23861, 23889, 23886,
23893, 23859, 23866, 23890, 23869, 23857, 23897, 23874, 23865, 23881,
23864, 23868, 23858, 23862, 23872, 23877, 24132, 24129, [24408, 57673],
24486, 24485, 24491, 24777, 24761, 24780, 24802, 24782, 24772, 24852,
24818, 24842, 24854, 24837, 24821, 24851, 24824, 24828, 24830, 24769,
24835, 24856, 24861, 24848, 24831, 24836, 24843, 25162, 25492, 25521,
25520, 25550, 25573, 25576, 25583, 25539, 25757, 25587, 25546, 25568,
25590, 25557, 25586, 25589, 25697, 25567, 25534, 25565, 25564, 25540,
25560, 25555, 25538, 25543, 25548, 25547, 25544, 25584, 25559, 25561,
25906, 25959, 25962, 25956, 25948, 25960, 25957, 25996, {f: 2, c: 26013},
26030, 26064, 26066, 26236, 26220, 26235, 26240, 26225, 26233, 26218,
26226, 26369, 26892, 26835, 26884, 26844, 26922, 26860, 26858, 26865,
26895, 26838, 26871, 26859, 26852, 26870, 26899, 26896, 26867, 26849,
26887, 26828, 26888, 26992, 26804, 26897, 26863, 26822, 26900, 26872,
26832, 26877, 26876, 26856, 26891, 26890, 26903, 26830, 26824,
{f: 2, c: 26845}, 26854, 26868, 26833, 26886, 26836, 26857, 26901, 26917,
26823, 27449, 27451, 27455, 27452, 27540, 27543, 27545, 27541, 27581,
27632, {f: 2, c: 27634}, 27696, 28156, {f: 2, c: 28230}, 28191, 28233,
28296, {f: 2, c: 28220}, 28229, 28258, 28203, 28223, 28225, 28253, 28275,
28188, 28211, 28235, 28224, 28241, 28219, 28163, 28206, 28254, 28264,
28252, 28257, 28209, 28200, 28256, 28273, 28267, 28217, 28194, 28208,
28243, 28261, 28199, 28280, 28260, 28279, 28245, 28281, 28242, 28262,
{f: 2, c: 28213}, 28250, 28960, 28958, 28975, 28923, 28974, 28977, 28963,
28965, 28962, 28978, 28959, 28968, 28986, 28955, 29259, 29274,
{f: 2, c: 29320}, 29318, 29317, 29323, 29458, 29451, 29488, 29474, 29489,
29491, 29479, 29490, 29485, 29478, 29475, 29493, 29452, 29742, 29740,
29744, 29739, 29718, 29722, 29729, 29741, 29745, 29732, 29731, 29725,
29737, 29728, 29746, 29947, 29999, 30063, 30060, 30183, 30170, 30177,
30182, 30173, 30175, 30180, 30167, 30357, 30354, 30426, {f: 2, c: 30534},
30532, 30541, 30533, 30538, 30542, {f: 2, c: 30539}, 30686, 30700, 30816,
{f: 2, c: 30820}, 30812, 30829, 30833, 30826, 30830, 30832, 30825, 30824,
30814, 30818, 31092, 31091, 31090, 31088, 31234, 31242, 31235, 31244,
31236, 31385, 31462, 31460, 31562, 31559, 31556, 31560, 31564, 31566,
31552, 31576, 31557, 31906, 31902, 31912, 31905, 32088, 32111, 32099,
32083, 32086, 32103, 32106, 32079, 32109, 32092, 32107, 32082, 32084,
32105, 32081, 32095, 32078, {f: 2, c: 32574}, {f: 2, c: 32613}, 32674,
{f: 2, c: 32672}, 32727, 32849, {f: 2, c: 32847}, 33022, 32980, 33091,
33098, 33106, 33103, 33095, 33085, 33101, 33082, 33254, 33262,
{f: 3, c: 33271}, 33284, {f: 2, c: 33340}, 33343, 33397, 33595,
[33743, 60382], 33785, 33827, 33728, 33768, 33810, 33767, 33764, 33788,
33782, 33808, 33734, 33736, 33771, 33763, 33727, 33793, 33757, 33765,
33752, 33791, 33761, 33739, 33742, 33750, 33781, 33737, 33801,
[33807, 58332], 33758, 33809, 33798, 33730, 33779, 33749, 33786, 33735,
33745, 33770, 33811, 33690, 33731, 33772, 33774, 33732, 33787, 33751,
33762, 33819, 33755, 33790, 34520, 34530, 34534, 34515, 34531, 34522,
34538, 34525, 34539, 34524, 34540, 34537, 34519, 34536, 34513, 34888,
34902, 34901, 35002, 35031, 35001, 35000, 35008, 35006, 34998, 35004,
34999, 35005, 34994, 35073, 35017, 35221, 35224, 35223, 35293,
{f: 2, c: 35290}, 35406, 35405, 35385, 35417, 35392, {f: 2, c: 35415},
{f: 2, c: 35396}, 35410, 35400, 35409, 35402, 35404, 35407, 35935, 35969,
35968, 36026, 36030, 36016, 36025, 36021, 36228, 36224, 36233, 36312,
36307, 36301, 36295, 36310, 36316, 36303, 36309, 36313, 36296, 36311,
36293, 36591, 36599, 36602, 36601, 36582, 36590, 36581, 36597,
{f: 2, c: 36583}, 36598, 36587, 36593, 36588, 36596, 36585, 36909, 36916,
36911, 37126, 37164, [37124, 60367], 37119, 37116, 37128, 37113, 37115,
37121, 37120, 37127, 37125, 37123, 37217, 37220, 37215, 37218, 37216,
37377, 37386, 37413, 37379, 37402, 37414, 37391, 37388, 37376, 37394,
37375, 37373, 37382, 37380, 37415, 37378, 37404, 37412, 37401, 37399,
37381, 37398, 38267, 38285, 38284, 38288, 38535, 38526, {f: 2, c: 38536},
38531, 38528, 38594, 38600, 38595, 38641, 38640, 38764, 38768, 38766,
38919, 39081, 39147, 40166, [12235, 40697], {f: 2, c: 20099}, 20150, 20669,
20671, 20678, 20654, 20676, 20682, 20660, 20680, 20674, 20656, 20673,
20666, 20657, 20683, 20681, 20662, 20664, 20951, 21114, 21112,
{f: 2, c: 21115}, 21955, 21979, 21964, 21968, 21963, 21962, 21981,
[21952, 64013], 21972, 21956, 21993, 21951, 21970, 21901, 21967, 21973,
21986, 21974, 21960, 22002, 21965, 21977, 21954, 22292, 22611, 22632,
22628, 22607, 22605, 22601, 22639, 22613, 22606, 22621, 22617, 22629,
22619, 22589, 22627, 22641, 22780, 23239, 23236, 23243, 23226, 23224,
23217, 23221, 23216, 23231, 23240, 23227, 23238, 23223, 23232, 23242,
23220, 23222, 23245, 23225, 23184, 23510, {f: 2, c: 23512}, 23583, 23603,
23921, 23907, 23882, 23909, 23922, 23916, 23902, 23912, 23911, 23906,
24048, 24143, 24142, 24138, 24141, 24139, 24261, 24268, 24262, 24267,
24263, 24384, 24495, 24493, 24823, {f: 2, c: 24905}, 24875, 24901, 24886,
24882, 24878, 24902, 24879, 24911, 24873, 24896, 25120, 37224, 25123,
25125, 25124, 25541, 25585, 25579, 25616, 25618, 25609, 25632, 25636,
25651, 25667, 25631, 25621, 25624, 25657, 25655, {f: 2, c: 25634}, 25612,
25638, 25648, 25640, 25665, 25653, 25647, 25610, 25626, 25664, 25637,
25639, 25611, 25575, 25627, 25646, 25633, 25614, 25967, 26002, 26067,
26246, 26252, 26261, 26256, 26251, 26250, 26265, 26260, 26232, 26400,
26982, 26975, 26936, 26958, 26978, 26993, 26943, 26949, 26986, 26937,
26946, 26967, 26969, 27002, {f: 2, c: 26952}, 26933, 26988, 26931, 26941,
26981, 26864, 27000, 26932, 26985, 26944, 26991, 26948, 26998, 26968,
26945, 26996, 26956, 26939, 26955, 26935, 26972, 26959, 26961, 26930,
26962, 26927, 27003, 26940, 27462, 27461, 27459, 27458, 27464, 27457,
27547, {f: 2, c: 27643}, 27641, {f: 2, c: 27639}, 28315, 28374, 28360,
28303, 28352, 28319, {f: 2, c: 28307}, 28320, 28337, 28345, 28358, 28370,
28349, 28353, 28318, 28361, 28343, 28336, 28365, 28326, 28367, 28338,
28350, 28355, 28380, 28376, 28313, 28306, 28302, 28301, 28324, 28321,
28351, 28339, 28368, 28362, 28311, 28334, 28323, 28999, 29012, 29010,
29027, 29024, 28993, 29021, [29026, 61080], 29042, 29048, 29034, 29025,
28994, 29016, 28995, 29003, 29040, 29023, 29008, 29011, 28996, 29005,
29018, 29263, 29325, 29324, 29329, 29328, 29326, 29500, 29506, 29499,
29498, 29504, 29514, 29513, 29764, {f: 2, c: 29770}, 29778, 29777, 29783,
29760, {f: 2, c: 29775}, 29774, 29762, 29766, 29773, 29780, 29921, 29951,
29950, 29949, 29981, 30073, 30071, 27011, 30191, 30223, 30211, 30199,
30206, 30204, [30201, 60782], 30200, 30224, 30203, 30198, 30189, 30197,
30205, 30361, 30389, 30429, 30549, {f: 2, c: 30559}, 30546, 30550, 30554,
30569, 30567, 30548, 30553, 30573, 30688, 30855, 30874, 30868, 30863,
30852, 30869, {f: 2, c: 30853}, 30881, 30851, 30841, 30873, 30848, 30870,
30843, 31100, 31106, 31101, 31097, 31249, {f: 2, c: 31256}, 31250, 31255,
31253, 31266, 31251, 31259, 31248, 31395, 31394, 31390, 31467, 31590,
31588, 31597, 31604, 31593, 31602, 31589, 31603, 31601, 31600, 31585,
31608, 31606, 31587, 31922, 31924, 31919, 32136, 32134, 32128, 32141,
32127, 32133, 32122, 32142, 32123, 32131, 32124, 32140, 32148, 32132,
32125, 32146, 32621, 32619, {f: 2, c: 32615}, 32620, 32678, 32677, 32679,
{f: 2, c: 32731}, 32801, 33124, 33120, 33143, 33116, 33129, 33115, 33122,
33138, 26401, 33118, 33142, 33127, 33135, 33092, 33121, 33309, 33353,
33348, 33344, 33346, 33349, 34033, 33855, 33878, 33910, 33913, 33935,
33933, 33893, 33873, 33856, 33926, 33895, 33840, 33869, 33917, 33882,
33881,
33859,
33887,
33863,
33872,
34574,
35038,
35297,
35447,
35914,
{f: 2,
36240,
36322,
{f: 2,
37136,
37448,
37450,
37488,
37426,
38650,
{f: 2,
39595,
20695,
20719,
22055,
22010,
22657,
22664,
23274,
23261,
23933,
23949,
24284,
24872,
24948,
25127,
25725,
25696,
26016,
27040,
27021,
27082,
27024,
{f: 2,
28411,
28397,
28469,
28412,
29056,
29335,
29813,
30216,
30594,
30888,
{f: 2,
31275,
31624,
31621,
32167,
32196,
32174,
32861,
33943,
33977,
33979,
34006,
33937,
34585,
34605,
34596,
35054,
35230,
35901,
36365,
{f: 2,
37146,
37494,
37497,
37512,
37533,
38787,
{f: 2,
39354,
{f: 2,
20784,
20746,
22090,
22072,
22700,
23288,
23967,
24169,
24971,
25005,
25712,
25763,
{f: 2,
27142,
27106,
27200,
27173,
27554,
28614,
28534,
28509,
28543,
29088,
29084,
29531,
29821,
30238,
30363,
30926,
31138,
31678,
31947,
32246,
32747,
33173,
33361,
34058,
34034,
34046,
{f: 2,
34095,
34651,
34655,
34677,
{f: 3,
35309,
35515,
35902,
36256,
36379,
36380,
{f: 2,
{f: 2,
{f: 2,
37558,
37570,
37598,
38316,
38746,
38952,
{f: 2,
39369,
39667,
39797,
40199,
{f: 2,
22128,
22300,
23319,
23322,
23982,
24175,
25000,
24972,
25843,
{f: 2,
27209,
27176,
27247,
27477,
27654,
28605,
28623,
29125,
29127,
{f: 2,
29823,
30253,
30618,
30941,
{f: 2,
31415,
31700,
{f: 2,
32270,
32293,
32876,
33202,
34131,
34119,
34144,
34724,
34681,
34714,
35113,
{f: 2,
35560,
36080,
36421,
36654,
37114,
37671,
37667,
37651,
37674,
38349,
38667,
38962,
39408,
39674,
39810,
40224,
40584,
40765,
{f: 2,
22740,
23343,
25013,
25827,
27286,
27278,
27276,
28636,
29169,
29874,
29967,
30642,
{f: 2,
31324,
31759,
31753,
31754,
32320,
32639,
33221,
34215,
34172,
34201,
34192,
34741,
34762,
35132,
{f: 2,
35602,
35952,
36435,
37282, 37275, 37273, 37279, 37281, 37277, 37280, 37793, 37763, 37807,
37732, 37718, 37703, 37756, 37720, 37724, 37750, 37705, {f: 2, c: 37712},
37728, 37741, 37775, 37708, 37738, 37753, 37719, 37717, 37714, 37711,
37745, 37751, 37755, 37729, 37726, 37731, 37735, 37710, 37721, 38343,
38336, 38345, 38339, 38341, 38327, 38574, 38576, 38572, 38688, 38687,
38680, 38685, 38681, 38810, 38817, 38812, 38814, 38813, 38869, 38868,
38897, 38977, 38980, 38986, 38985, 38981, 38979, 39205, {f: 2, c: 39211},
39210, 39219, 39218, 39215, 39213, 39217, 39216, 39320, 39331, 39329,
39426, 39418, 39412, 39415, 39417, 39416, 39414, 39419, {f: 2, c: 39421},
39420, 39427, 39614, 39678, 39677, 39681, 39676, 39752, 39834, 39848,
39838, 39835, 39846, 39841, 39845, 39844, 39814, 39842, 39840, 39855,
40243, 40257, 40295, 40246, {f: 2, c: 40238}, 40241, 40248, 40240, 40261,
{f: 2, c: 40258}, 40254, 40247, 40256, 40253, 32757, 40237, 40586, 40585,
40589, 40624, 40648, 40666, 40699, 40703, 40740, 40739, 40738, 40788,
[12245, 40864], 20785, {f: 2, c: 20781}, 22168, 22172, 22167, 22170, 22173,
22169, 22896, 23356, {f: 2, c: 23657}, 24000, {f: 2, c: 24173}, 25048,
25055, {f: 2, c: 25069}, 25073, 25066, 25072, 25067, 25046, 25065, 25855,
25860, 25853, 25848, 25857, 25859, 25852, 26004, 26075, {f: 2, c: 26330},
26328, 27333, 27321, 27325, 27361, 27334, 27322, {f: 2, c: 27318}, 27335,
27316, 27309, 27486, 27593, 27659, 28679, {f: 2, c: 28684}, 28673, 28677,
28692, 28686, {f: 2, c: 28671}, 28667, 28710, 28668, 28663, 28682,
[29185, 60224], 29183, 29177, 29187, 29181, 29558, 29880, 29888, 29877,
29889, 29886, 29878, 29883, 29890, 29972, 29971, 30300, 30308, 30297,
30288, 30291, 30295, 30298, 30374, 30397, 30444, 30658, 30650, 30988,
{f: 2, c: 30995}, 30985, 30992, 30994, 30993, 31149, 31148, 31327, 31772,
31785, 31769, 31776, 31775, 31789, 31773, 31782, 31784, 31778, 31781,
31792, 32348, 32336, 32342, 32355, 32344, 32354, 32351, 32337, 32352,
32343, 32339, 32693, 32691, {f: 2, c: 32759}, 32885, {f: 2, c: 33233},
33232, 33375, 33374, 34228, 34246, 34240, 34243, 34242, 34227, 34229,
34237, 34247, 34244, 34239, 34251, 34254, 34248, 34245, 34225, 34230,
34258, 34340, 34232, 34231, 34238, 34409, 34791, 34790, 34786, 34779,
34795, 34794, 34789, 34783, 34803, 34788, 34772, 34780, 34771, 34797,
34776, 34787, 34775, 34777, 34817, 34804, 34792, 34781, 35155, 35147,
35151, 35148, 35142, {f: 2, c: 35152}, 35145, 35626, 35623, 35619, 35635,
35632, 35637, 35655, 35631, 35644, 35646, 35633, 35621, 35639, 35622,
35638, 35630, 35620, 35643, 35645, 35642, 35906, 35957, 35993, 35992,
35991, 36094, 36100, 36098, 36096, 36444, 36450, 36448, 36439, 36438,
36446, 36453, 36455, 36443, 36442, 36449, 36445, 36457, 36436,
{f: 3, c: 36678}, 36683, 37160, {f: 2, c: 37178}, 37182, 37288, 37285,
37287, 37295, 37290, 37813, 37772, 37778, 37815, 37787, 37789, 37769,
37799, 37774, 37802, 37790, 37798, 37781, 37768, 37785, 37791, 37760,
37773, 37809, 37777, 37810, 37796, 37800, 37812, 37795, {f: 2, c: 38354},
38353, 38579, 38615, 38618, 24002, 38623, 38616, 38621, 38691, 38690,
38693, 38828, 38830, 38824, 38827, 38820, 38826, 38818, 38821, 38871,
38873, 38870, 38872, 38906, {f: 3, c: 38992}, 39096, 39233, 39228, 39226,
39439, 39435, 39433, 39437, 39428, 39441, 39434, 39429, 39431, 39430,
39616, 39644, 39688, {f: 2, c: 39684}, 39721, 39733, 39754, 39756, 39755,
39879, 39878, 39875, 39871, 39873, 39861, 39864, 39891, 39862, 39876,
39865, 39869, 40284, 40275, 40271, 40266, 40283, 40267, 40281, 40278,
40268, 40279, 40274, 40276, 40287, 40280, 40282, 40590, 40588, 40671,
40705, 40704, [40726, 58693], 40741, 40747, 40746, 40745, 40744, 40780,
40789, {f: 2, c: 20788}, 21142, 21239, 21428, 22187, 22189,
{f: 2, c: 22182}, 22186, 22188, 22746, 22749, 22747, 22802,
{f: 3, c: 23357}, 24003, 24176, 24511, 25083, 25863, 25872, 25869, 25865,
25868, 25870, 25988, 26078, 26077, 26334, 27367, 27360, 27340, 27345,
27353, 27339, 27359, 27356, 27344, 27371, 27343, 27341, 27358, 27488,
27568, 27660, 28697, 28711, 28704, 28694, 28715, {f: 3, c: 28705}, 28713,
28695, 28708, 28700, 29196, 29194, 29191, 29186, 29189, {f: 2, c: 29349},
29348, 29347, 29345, 29899, 29893, 29879, 29891, 29974, 30304,
{f: 2, c: 30665}, 30660, 30705, 31005, 31003, 31009, 31004, 30999, 31006,
31152,
32374,
32587,
33291,
34266,
34288,
34825,
{f: 2,
35254,
35669,
{f: 2,
36458,
37184,
37881,
37845,
38625,
{f: 3,
39240,
39451,
39690,
39906,
39898,
{f: 2,
40307,
40640,
22194,
{f: 2,
{f: 2,
{f: 2,
28735,
29352,
{f: 2,
31017,
31813,
33241,
34308,
34838,
35685,
36693,
37899,
37913,
37897,
38366,
39008,
39244,
39470,
39944,
39956,
40352,
40355,
40676,
40849,
24011,
{f: 2,
29209,
31986,
32816,
34350,
34852,
35704,
36699, 36701, 37190, {f: 2, c: 37188}, 37305, 37951, 37947, 37942, 37929,
37949, 37936, 37945, 37930, 37943, 37932, 37952, 37937, 38373, 38372,
38371, 38709, 38714, 38847, 38881, 39012, 39113, 39110, 39104, 39256,
39254, 39481, 39485, 39494, 39492, 39490, 39489, 39482, 39487, 39629,
39701, {f: 2, c: 39703}, 39702, 39738, 39762, 39979, 39965, 39964, 39980,
39971, {f: 2, c: 39976}, 39972, 39969, 40375, 40374, 40380, 40385, 40391,
40394, 40399, 40382, 40389, 40387, 40379, 40373, 40398, {f: 2, c: 40377},
40364, 40392, 40369, 40365, 40396, 40371, 40397, 40370, 40570, 40604,
40683, 40686, 40685, 40731, 40728, 40730, 40753, 40782, 40805, 40804,
40850, 20153, 22214, 22213, 22219, 22897, {f: 2, c: 23371}, 24021, 24017,
24306, 25889, 25888, 25894, 25890, 27403, {f: 2, c: 27400}, 27661,
{f: 3, c: 28757}, 28754, {f: 2, c: 29214}, 29353, 29567, 29912, 29909,
29913, 29911, 30317, 30381, 31029, 31156, {f: 2, c: 31344}, 31831, 31836,
31833, 31835, 31834, 31988, 31985, 32401, 32591, 32647, 33246, 33387,
{f: 2, c: 34356}, 34355, 34348, 34354, 34358, 34860, 34856, 34854, 34858,
34853, 35185, 35263, 35262, 35323, 35710, 35716, 35714, 35718, 35717,
35711, 36117, 36501, 36500, 36506, 36498, 36496, {f: 2, c: 36502}, 36704,
36706, 37191, 37964, 37968, {f: 2, c: 37962}, 37967, 37959, 37957,
{f: 2, c: 37960}, 37958, 38719, 38883, 39018, 39017, 39115, 39252, 39259,
39502, {f: 2, c: 39507}, 39500, 39503, 39496, 39498, 39497, 39506, 39504,
39632, 39705, 39723, 39739, 39766, 39765, 40006, 40008, 39999, 40004,
39993, 39987, 40001, 39996, 39991, 39988, 39986, 39997, 39990, 40411,
40402, 40414, 40410, 40395, 40400, 40412, 40401, 40415, 40425, 40409,
40408, 40406, 40437, 40405, 40413, 40630, 40688, 40757, 40755, 40754,
40770, 40811, 40853, 40866, 20797, 21145, 22760, 22759, 22898, 23373,
24024, 34863, 24399, 25089, {f: 2, c: 25091}, 25897, 25893, 26006, 26347,
{f: 2, c: 27409}, 27407, 27594, 28763, 28762, 29218, 29570, 29569, 29571,
30320, 30676, 31847, 31846, 32405, 33388, 34362, 34368, 34361, 34364,
34353, 34363, 34366, 34864, 34866, 34862, 34867, 35190, 35188, 35187,
35326, 35724, 35726, 35723, 35720, 35909, 36121, 36504, 36708, 36707,
37308, 37986, 37973, 37981, 37975, 37982, {f: 2, c: 38852}, 38912, 39510,
39513, {f: 3, c: 39710}, 40018, 40024, 40016, 40010, 40013, 40011, 40021,
40025, 40012, 40014, 40443, 40439, 40431, 40419, 40427, 40440, 40420,
40438, 40417, 40430, 40422, 40434, [40432, 60370], 40418, 40428, 40436,
40435, 40424, 40429, 40642, 40656, {f: 2, c: 40690}, 40710, 40732, 40760,
40759, 40758, 40771, 40783, 40817, 40816, {f: 2, c: 40814}, 22227, 22221,
23374, 23661, 25901, {f: 2, c: 26349}, 27411, 28767, 28769, 28765, 28768,
29219, 29915, 29925, 30677, 31032, 31159, 31158, 31850, 32407, 32649,
33389, 34371, 34872, 34871, 34869, 34891, {f: 2, c: 35732},
{f: 3, c: 36510}, 36509, 37310, 37309, 37314, 37995, {f: 2, c: 37992},
38629, 38726, 38723, 38727, 38855, 38885, 39518, 39637, 39769, 40035,
40039, 40038, 40034, 40030, 40032, 40450, 40446, 40455, 40451, 40454,
40453, {f: 2, c: 40448}, 40457, 40447, 40445, 40452, 40608, 40734, 40774,
{f: 3, c: 40820}, 22228, 25902, 26040, {f: 2, c: 27416}, 27415, 27418,
28770, 29222, 29354, {f: 2, c: 30680}, 31033, 31849, 31851, 31990, 32410,
32408, 32411, 32409, {f: 2, c: 33248}, {f: 3, c: 34374}, {f: 2, c: 35193},
35196, 35195, 35327, {f: 2, c: 35736}, 36517, 36516, 36515, 37998, 37997,
37999, 38001, 38003, 38729, 39026, 39263, 40040, 40046, 40045, 40459,
40461, 40464, 40463, 40466, 40465, 40609, 40693, 40713, 40775, 40824,
40827, 40826, 40825, 22302, 28774, 31855, 34876, 36274, 36518, 37315,
38004, 38008, 38006, 38005, 39520, [39726, 60830], 40052, 40051, 40049,
40053, 40468, 40467, 40694, 40714, 40868, 28776, 28773, 31991, 34410,
34878, 34877, 34879, 35742, 35996, 36521, 36553, 38731, {f: 2, c: 39027},
39116, 39265, 39339, 39524, {f: 2, c: 39526}, 39716, 40469, 40471, 40776,
25095, 27422, 29223, 34380, 36520, 38018, {f: 2, c: 38016}, 39529, 39528,
40473, 34379, 35743, 38019, 40057, 40631, 30325, 39531, 40058, 40477,
{f: 2, c: 28777}, 29225, 40612, 40830, 40777, 40856, {s: 97}, 65075, 0,
65076, 65103, [168, 776, 63208], [710, 63209, 65342], [12541, 63210],
[12542, 63211], [12445, 63212], [12446, 63213], 0, [12293, 63216],
[12294, 63217], [12295, 63218], [12540, 63219], [63220, 65339],
[58379,
[34996,
[35207,
[35303,
[30611,
[31465,
[29052,
[58413,
[58418,
[58422,
[58426,
[58430,
[36114,
[28764,
[58444,
[58448,
[36534,
[36653,
[37635,
[58465,
[58469,
[58476,
[36961,
[58484,
[37223,
[58494,
[37441,
[58503,
[37676,
[23235,
[37444,
[37747,
[38310,
[17081,
[18911,
[16748,
[30965,
[18849,
[58550,
[58554,
[18959,
[28789,
[38743,
[37925,
[38793,
[38848,
[38894,
[58588,
[38963,
[58596,
[58600,
[39111,
[21936,
[37752,
[58616,
[39483,
[14020,
[39650,
[39700,
[39732,
[39744,
[39822,
[58650,
[58654,
[40318,
[40388,
[58668,
[40592,
[19764,
[40641,
[20274,
[40712,
[40727,
[40773,
[33919,
[29206,
[29047,
[29598,
[58718,
[58722,
[58726,
[30578,
[58734,
[58738,
[58742,
[58746,
[58750,
[58754,
[58758,
[58763,
[58767,
[58771,
[15381,
[26640,
[58783,
[22174,
[58791,
[20216,
[20156,
[58805,
[14745,
[20265,
[35546,
[20749,
[58825,
[20609,
[20732,
[58841,
[20904,
[58849,
[58853,
[58857,
[58862,
[27089,
[29716,
[58875,
[29199,
[21709,
[38644,
[13886,
[58896,
[22968,
[58905,
[14069,
[58913,
[37856,
[18802,
[14240,
[24136,
[24269,
[14081,
[14035,
[58945,
[58949,
[23364,
[58958,
[58962,
[25024,
[24985,
[58974,
[58978,
[58982,
[25782,
[58991,
[25963,
[58999,
[59003,
[59007,
[59012,
[59016,
[59020,
[59024,
[19347,
[26211,
[59036,
[15257,
[15254,
[27326,
[27218,
[25873,
[27258,
[37792,
[37513,
[28069,
[28164,
[22599,
[59089,
[29319,
[20857,
[59101,
[59105,
[59109,
[29900,
[17567,
[16227,
[30037,
[59130,
[15821,
[59138,
[59142,
[59146,
[30479,
[14942,
[16063,
[59162,
[30750,
[29648,
[16654,
[31290,
[16690,
[59188,
[13719,
[59196,
[59200,
[59204,
[31486,
[16913,
[31949,
[31868,
[32263,
[59228,
[17002,
[59236,
[59240,
[59245,
[39398,
[59253,
[59258,
[33079,
[33090,
[33378,
[59275,
[16767,
[23268,
[59287,
[34926,
[35046,
[35156,
[59303,
[33955,
[35389,
[37419,
[28868,
[36073,
[23024,
[59332,
[27736,
[28537,
[14005,
[18694,
[16482,
[59357,
[38311,
[29765,
[59369,
[59373,
[59377,
[29803,
[26695,
[37736,
[59394,
[18748,
[39224,
[59407,
[59411,
[59415,
[16128,
[39227,
[19311,
[59432,
[39471,
[39356,
[22642,
[59448,
[26821,
[24912,
[40015,
[39952,
[39839,
[19630,
[40204,
[59480,
[59484,
[59488,
[34286,
[31202,
[15714,
[59505,
[20452,
[30781,
[59517,
[20338,
[21524,
[22410,
[13487,
[59538,
[23246,
[14124,
[37816,
[59555,
[59559,
[32168,
[59567,
[16105,
[16097,
[29691,
[59583,
[59587,
[59591,
[59595,
[37766,
[59603,
[22180,
[21762,
[59615,
[37889,
[22960,
[23201,
[37471,
[37748,
[14730,
[59643,
[28175,
[59651,
[59655,
[15727,
[13512,
[22980,
[59671,
[14038,
[59679,
[26809,
[59687,
[59691,
[59695,
[59699,
[33597,
[59709,
[59713,
[59717,
[14023,
[59725,
[27179,
[59733,
[20400,
[59741,
[59745,
[27871,
[59764,
[59790,
[27810,
[23646,
[36795,
[15820,
[33446,
[39364,
[24808,
[31432,
[21610,
[39983,
[26398,
[25283,
[36768,
[24497,
[60225,
[60235,
[18640,
[60250,
[22943,
[14747,
[60267,
[60276,
[29041,
[60293,
[60303,
[18300,
[36950,
[60328,
[60335,
[60342,
[60348,
[28047,
[31554,
[39462,
[31107,
[30011,
[60391,
[37680,
[34855,
[60411,
[14756,
[60422,
[14753,
[29101,
[60439,
[31102,
[60452,
[26678,
[60461,
[22293,
[60471,
[60475,
[60482,
[37461,
[22155,
[17673,
[13540,
[60565,
[22207,
[25904,
[19581,
[22901,
[40286,
[30286,
[33096,
[33816,
[22083,
[22021,
[13869,
[21655,
[24272,
[40619,
[38765,
[37238,
[21865,
[20890,
[21581,
[36397,
[34820,
[17644,
[37232,
[18254,
[25887,
[60713,
[40272,
[14812,
[14930,
[39917,
[60754,
[36872,
[33224,
[35651,
[27058,
[28089,
[15835,
[15569,
[24809,
[57346,
[29679,
[57354,
[57358,
[57362,
[57366,
[57370,
[57374,
[57379,
[13434,
[33814,
[57392,
[57396,
[57400,
[57404,
[20937,
[20947,
[33741,
[21003,
[21079,
[31765,
[57434,
[57439,
[57444,
[29653,
[57452,
[21364,
[57461,
[21408,
[57469,
[21445,
[21465,
[57481,
[21523,
[27995,
[21853,
[57497,
[57501,
[21551,
[57510,
[26291,
[57518,
[30961,
[22272,
[13859,
[27758,
[57539,
[57543,
[22698,
[57552,
[57556,
[22815,
[57564,
[22985,
[57573,
[57577,
[23033,
[14054,
[29797,
[57595,
[21200,
[57603,
[23509,
[23539,
[57616,
[57620,
[23685,
[57628,
[23878,
[33532,
[57640,
[24110,
[21414,
[24073,
[14496,
[24333,
[57669,
[57674,
[37696,
[15711,
[57687,
[24625,
[13881,
[15936,
[57706,
[24932,
[24961,
[23466,
[57723,
[57727,
[25886,
[57735,
[57739,
[57743,
[57750,
[14950,
[28438,
[25965,
[19255,
[26083,
[57776,
[57780,
[57784,
[57790,
[39332,
[27130,
[57804,
[26658,
[57812,
[27105,
[26819,
[14849,
[26977,
[27032,
[20624,
[27205,
[26545,
[27421,
[27508,
[57858,
[27617,
[57866,
[33318,
[57874,
[57878,
[39811,
[26679,
[28054,
[57894,
[57898,
[57905,
[28239,
[14093,
[57917,
[28484,
[57925,
[28627,
[57933,
[57937,
[28747,
[28885,
[15848,
[28971,
[57960,
[28972,
[29114,
[37954,
[29220,
[29248,
[29271,
[28477,
[57993,
[29486,
[58001,
[58005,
[58009,
[29717,
[16087,
[29767,
[29804,
[29826,
[58036,
[58040,
[29982,
[58049,
[30055,
[58057,
[30132,
[30287,
[33263,
[30369,
[58078,
[58082,
[62659,
[62663,
[16275,
[62671,
[62676,
[25650,
[62686,
[62694,
[62703,
[33004,
[14231,
[62719,
[13833,
[62728,
[62732,
[62736,
[62740,
[62744,
[62748,
[62752,
[62756,
[21096,
[23400,
[18919,
[62772,
[23870,
[23972,
[24451,
[24791,
[25015,
[25317,
[25570,
[25792,
[15037,
[26258,
[26532,
[15218,
[26947,
[27013,
[27252,
[27289,
[27348,
[27626,
[27906,
[15599,
[28184,
[28347,
[28392,
[15686,
[15722,
[15754,
[28756,
[17345,
[15789,
[29837,
[58270,
[58325,
[30583,
[58440,
[58473,
[58637,
[40802,
[37519,
[26511,
[15129,
[33920,
[18733,
[59752,
[59758,
[21637,
[59767,
[59771,
[29583,
[32743,
[16041,
[16074,
[29727,
[16122,
[30061,
[30152,
[30330,
[16413,
[13787,
[30654,
[30791,
[59851,
[31121,
[31420,
[31451,
[31611,
[31867,
[17044,
[32207,
[32692,
[32805,
[22452,
[17389,
[33044,
[33113,
[17445,
[33217,
[33398,
[33623,
[33892,
[34017,
[34130,
[34272,
[34543,
[34990,
[59971,
[35921,
[18328,
[22356,
[36578,
[36801,
[18605,
[37416,
[37550,
[37619,
[37764,
[37911,
[18794,
[38306,
[18917,
[38834,
[19225,
[39223,
[39365,
[39785,
[19565,
[40265,
[40444,
[40637,
[40689,
[60096,
[38081,
[60108,
[60112,
[21662,
[60121,
[60127,
[60131,
[60138,
[60144,
[60150,
[60155,
[60160,
[60165,
[60170,
[60174,
[29080,
[60184,
[60188,
[60193,
[60202,
[60207,
[60211,
[60215,
[60223,
[60234,
[60245,
[60258,
[60263,
[60275,
[22335,
[60292,
[60301,
[60312,
[29009,
[60326,
[60338,
[13848,
[60362,
[60373,
[60385,
[60395,
[38047,
[60425,
[60442,
[60459,
[234, 62280], [609, 62281], [643, 63551], [592, 63552], [603, 63553],
[596, 63554], [629, 63555], [339, 63556], [248, 63557], [331, 63558],
[650, 63559], [618, 63560], {f: 2, c: 62282}, [11933, 63530],
[11974, 63539], [12003, 63547], 20539, 28158, [62841, 171123], 62842,
[15817, 62843], 34959, [62845, 147790], 28791, 23797, [19232, 62848],
[62849, 152013], [13657, 62850], [62851, 154928], 24866, [62853, 166450],
36775, 37366, 29073, 26393, 29626, [62859, 144001], [62860, 172295],
[15499, 62861], [62862, 137600], [19216, 62863], 30948, 29698, 20910,
[62867, 165647], [16393, 62868], 27235, [62870, 172730], [16931, 62871],
34319, 31274, [62875, 170311], [62876, 166634], 38741, 28749, 21284,
[62880, 139390], 37876, 30425, [62883, 166371], 62884, 30685, 20131, 20464,
20668, 20015, 20247, 62891, 21556, 32139, 22674, 22736, [62896, 138678],
24210, 24217, 24514, [62900, 141074], 25995, [62902, 144377], 26905, 27203,
[62905, 146531], 27903, 29184, [62909, 148741], 29580, [16091, 62911],
[62912, 150035], 23317, 29881, 35715, [62916, 154788], [62917, 153237],
31379, 31724, 31939, 32364, 33528, 34199, 62924, 34960, 62926, 36537,
62928, 36815, 34143, 39392, 37409, 62933, [62934, 167353], [62935, 136255],
[16497, 62936], [17058, 62937], 23066, 39016, 26475, [17014, 62944], 22333,
34262, [62948, 149883], 33471, [62950, 160013], [19585, 62951],
[62952, 159092], 23931, [62954, 158485], [62955, 159678], {f: 2, c: 62956},
23446, 62959, 32347],
'Adobe-GB1': [{f: 95, c: 32}, {f: 3, c: 12288}, [183, 12539], 713, 711, 168,
12291, 12293, 8212, 65374, 8214, [8230, 8943], {f: 2, c: 8216},
{f: 2, c: 8220}, {f: 2, c: 12308}, {f: 8, c: 12296}, {f: 2, c: 12310},
{f: 2, c: 12304}, 177, 215, 247, 8758, {f: 2, c: 8743}, 8721, 8719, 8746,
8745, 8712, 8759, 8730, 8869, 8741, 8736, 8978, 8857, 8747, 8750, 8801,
8780, 8776, 8765, 8733, 8800, {f: 2, c: 8814}, {f: 2, c: 8804}, 8734, 8757,
8756, 9794, 9792, 176, {f: 2, c: 8242}, 8451, 65284, 164, {f: 2, c: 65504},
8240, 167, 8470, 9734, 9733, 9675, 9679, 9678, 9671, 9670, 9633, 9632,
9651, 9650, 8251, 8594, {f: 2, c: 8592}, 8595, 12307, {f: 20, c: 9352},
{f: 20, c: 9332}, {f: 10, c: 9312}, {f: 10, c: 12832}, {f: 12, c: 8544},
{f: 3, c: 65281}, 65509, {f: 89, c: 65285}, 65507, {f: 83, c: 12353},
{f: 86, c: 12449}, {f: 17, c: 913}, {f: 7, c: 931}, {f: 17, c: 945},
{f: 7, c: 963}, {f: 7, c: 59277}, {f: 2, c: 65077}, {f: 2, c: 65081},
{f: 2, c: 65087}, {f: 2, c: 65085}, {f: 4, c: 65089}, {f: 2, c: 59284},
{f: 2, c: 65083}, {f: 2, c: 65079}, 65073, 59286, {f: 2, c: 65075},
{f: 6, c: 1040}, 1025, {f: 32, c: 1046}, 1105, {f: 26, c: 1078}, 257, 225,
462, 224, 275, 233, 283, 232, 299, 237, 464, 236, 333, 243, 466, 242, 363,
250, 468, 249, 470, 472, 474, 476, 252, 234, 593, 7743, 324, 328, 505, 609,
{f: 37, c: 12549}, 0, {f: 76, c: 9472}, {s: 126}, 21834, 38463, 22467,
25384, 21710, 21769, 21696, 30353, 30284, 34108, 30702, 33406, 30861,
29233, 38552, 38797, 27688, 23433, 20474, 25353, 26263, 23736, 33018,
26696, 32942, 26114, 30414, 20985, 25942, 29100, 32753, 34948, 20658,
22885, 25034, 28595, 33453, 25420, 25170, 21485, 21543, 31494,
[12043, 20843], 30116, 24052, 25300, 36299, 38774, 25226, 32793, 22365,
38712, 32610, 29240, [12137, 30333], 26575, 30334, 25670, 20336, 36133,
25308, 31255, 26001, 29677, 25644, 25203, 33324, 39041, 26495, 29256,
25198, 25292, 20276, 29923, 21322, 21150, 32458, 37030, 24110, 26758,
27036, 33152, 32465, 26834, 30917, 34444, 38225, 20621, 35876, 33502,
32990, 21253, 35090, 21093, 34180, 38649, 20445, 22561, 39281, 23453,
25265, 25253, 26292, 35961, 40077, 29190, 26479, 30865, 24754, 21329,
21271, 36744, 32972, 36125, 38049, 20493, 29384, 22791, 24811, 28953,
34987, 22868, 33519, 26412, 31528, 23849, 32503, 29997, 27893, 36454,
36856, 36924, [12240, 40763], [12112, 27604], 37145, 31508, 24444, 30887,
34006, 34109, 27605, 27609, 27606, 24065, 24199, 30201, 38381, 25949,
24330, 24517, 36767, 22721, 33218, 36991, 38491, 38829, 36793, 32534,
36140, 25153, 20415, 21464, 21342, {f: 2, c: 36776}, 36779, 36941, 26631,
24426, 33176, 34920, 40150, 24971, 21035, 30250, 24428, 25996, 28626,
28392, 23486, 25672, 20853, 20912, 26564, 19993, 31177, 39292, 28851,
30149, 24182, 29627, 33760, 25773, 25320, 38069, 27874, 21338, 21187,
25615, 38082, 31636, 20271, 24091, 33334, 33046, 33162, 28196, 27850,
39539, 25429, [12056, 21340], 21754, 34917, 22496, 19981, 24067, 27493,
31807, 37096, 24598, 25830, 29468, 35009, 26448, 25165, 36130, 30572,
36393, 37319, 24425, 33756, 34081, 39184, 21442, 34453, 27531, 24813,
24808, 28799, 33485, 33329, 20179, 27815, 34255, 25805, 31961, 27133,
26361, 33609, 21397, 31574, 20391, 20876, 27979, 23618, 36461, 25554,
21449, 33580, 33590, 26597, 30900, 25661, 23519, 23700, 24046, 35815,
25286, 26612, 35962, 25600, 25530, 34633, 39307, 35863, 32544, 38130,
20135, 38416, 39076, 26124, 29462, 22330, 23581, 24120, 38271, 20607,
32928, [12058, 21378], 25950, 30021, 21809, 20513, 36229, 25220, 38046,
26397, 22066, 28526, 24034, 21557, 28818, 36710, 25199, 25764, 25507,
24443, 28552, 37108, [12162, 33251], [12192, 36784], 23576, 26216, 24561,
27785, 38472, 36225, 34924, 25745, 31216, 22478, 27225, 25104, 21576,
20056, 31243, 24809, 28548, 35802, 25215, 36894, 39563, 31204, 21507,
30196, 25345, 21273, 27744, 36831, 24347, 39536, 32827, 40831, 20360,
23610, [12186, 36196], 32709, 26021, 28861, 20805, 20914, [12173, 34411],
23815, 23456, 25277, 37228, 30068, 36364, 31264, 24833, 31609, 20167,
32504, 30597, 19985, 33261, 21021, 20986, 27249, 21416, 36487, 38148,
38607, 28353, 38500, 26970, 30784, 20648, 30679, 25616, 35302, 22788,
25571, 24029, 31359, 26941, 20256, 33337, 21912, 20018, 30126, 31383,
24162, 24202, 38383, 21019, 21561, 28810, 25462, 38180, 22402, 26149,
26943, 37255, 21767, 28147, 32431, 34850, 25139, 32496, 30133, 33576,
30913, 38604, 36766, 24904, 29943, 35789, 27492, 21050, 36176, 27425,
32874, 33905, 22257, 21254, 20174, 19995, 20945, 31895, 37259, 31751,
20419, 36479, 31713, 31388, 25703, 23828, 20652, 33030, 30209, 31929,
28140, 32736, 26449, 23384, [12072, 23544], 30923, 25774, 25619, 25514,
25387, 38169, 25645, 36798, 31572, 30249, 25171, [12068, 22823], 21574,
[12109, 27513], 20643, 25140, 24102, 27526, 20195, 36151, 34955, 24453,
36910, 24608, 32829, 25285, 20025, 21333, 37112, 25528, 32966, 26086,
27694, 20294, 24814, 28129, 35806, 24377, 34507, 24403, 25377, 20826,
33633, 26723, [12049, 20992], 25443, 36424, 20498, 23707, 31095, 23548,
21040, 31291, 24764, 36947, 30423, 24503, 24471, 30340, 36460, 28783,
30331, 31561, 30634, 20979, 37011, 22564, 20302, 28404, 36842, 25932,
31515, 29380, 28068, 32735, 23265, 25269, 24213, 22320, 33922, 31532,
24093, 24351, 36882, 32532, 39072, 25474, 28359, 30872, 28857, 20856,
38747, 22443, 30005, 20291, 30008, 24215, 24806, 22880, 28096, 27583,
30857, 21500, 38613, 20939, 20993, 25481, 21514, 38035, 35843, 36300,
29241, 30879, 34678, 36845, 35853, 21472, 19969, 30447, 21486, 38025,
39030, [12237, 40718], 38189, 23450, 35746, 20002, 19996, 20908, 33891,
25026, 21160, 26635, 20375, 24683, 20923, 27934, 20828, 25238,
[12099, 26007], 38497, [12182, 35910], 36887, 30168, 37117, 30563, 27602,
29322, 29420, 35835, 22581, 30585, 36172, 26460, 38208, 32922, 24230,
28193, 22930, 31471, 30701, 38203, 27573, 26029, 32526, 22534, 20817,
38431, 23545, 22697, 21544, 36466, 25958, 39039, 22244, 38045, 30462,
36929, 25479, 21702, 22810, 22842, 22427, 36530, 26421, 36346, 33333,
21057, 24816, 22549, 34558, 23784, 40517, 20420, 39069, 35769, 23077,
24694, 21380, 25212, 36943, 37122, 39295, 24681, [12157, 32780],
[12041, 20799], [12159, 32819], 23572, 39285, 27953, [12038, 20108], 36144,
21457, 32602, 31567, 20240, 20047, 38400, 27861, 29648, 34281, 24070,
30058, 32763, 27146, 30718, 38034, 32321, 20961, 28902, 21453, 36820,
33539, 36137, 29359, 39277, 27867, 22346, 33459, [12101, 26041], 32938,
25151, 38450, 22952, 20223, 35775, 32442, 25918, 33778, [12206, 38750],
21857, 39134, 32933, 21290, 35837, 21536, 32954, 24223, 27832, 36153,
33452, 37210, 21545, 27675, 20998, 32439, 22367, 28954, 27774, 31881,
22859, 20221, 24575, 24868, 31914, 20016, 23553, 26539, 34562, 23792,
38155, 39118, 30127, 28925, 36898, 20911, 32541, 35773, 22857, 20964,
20315, 21542, 22827, 25975, 32932, 23413, 25206, 25282, 36752, 24133,
27679, 31526, 20239, 20440, 26381, 28014, 28074, 31119, 34993, 24343,
29995, 25242, 36741, 20463, 37340, 26023, 33071, 33105, 24220, 33104,
36212, 21103, 35206, 36171, 22797, 20613, 20184, [12201, 38428],
[12119, 29238], 33145, 36127, 23500, 35747, 38468, 22919, 32538, 21648,
22134, 22030, 35813, 25913, 27010, 38041, 30422, 28297, [12082, 24178],
[12130, 29976], 26438, 26577, 31487, 32925, 36214, 24863, 31174, 25954,
36195, 20872, 21018, 38050, 32568, 32923, 32434, 23703, 28207, 26464,
31705, 30347, [12220, 39640], 33167, 32660, 31957, 25630, 38224, 31295,
21578, 21733, 27468, 25601, [12093, 25096], 40509, 33011, 30105, 21106,
[12208, 38761], 33883, 26684, 34532, 38401, 38548, 38124, 20010, 21508,
32473, 26681, 36319, 32789, 26356, 24218, 32697, 22466, 32831, 26775,
[12079, 24037], 25915, 21151, 24685, 40858, 20379, 36524, 20844, 23467,
[12088, 24339], 24041, 27742, 25329, 36129, 20849, 38057, 21246, 27807,
33503, 29399, 22434, 26500, 36141, 22815, 36764, 33735, 21653, 31629,
20272, 27837, 23396, 22993, [12238, 40723], 21476, 34506, [12219, 39592],
[12181, 35895], 32929, 25925, 39038, 22266, 38599, 21038, [12128, 29916],
21072, 23521, 25346, 35074, 20054, 25296, 24618, 26874, 20851, 23448,
20896, 35266, 31649, 39302, 32592, 24815, 28748, 36143, 20809,
[12084, 24191], 36891, 29808, 35268, 22317, 30789, 24402, 40863, 38394,
36712, [12225, 39740], 35809, 30328, 26690, 26588, 36330, 36149, 21053,
36746, 28378, 26829, 38149, 37101, 22269, 26524, 35065, 36807, 21704,
39608, 23401, 28023, 27686, 20133, 23475, 39559, 37219, 25000, 37039,
38889, 21547, 28085, 23506, 20989, 21898, 32597, 32752, 25788, 25421,
26097, 25022, 24717, 28938, 27735, 27721, 22831, 26477, 33322, 22741,
22158, 35946, 27627, 37085, 22909, 32791, 21495, 28009, 21621, 21917,
33655, 33743, 26680, [12146, 31166], 21644, 20309, 21512, 30418, 35977,
38402, 27827, 28088, 36203, 35088, 40548, 36154, 22079, [12234, 40657],
30165, 24456, 29408, 24680, 21756, 20136, 27178, 34913, 24658, 36720,
21700, 28888, 34425, 40511, 27946, 23439, 24344, 32418, 21897, 20399,
29492, 21564, 21402, 20505, 21518, 21628, 20046, 24573, 29786, 22774,
33899, 32993, 34676, 29392, 31946, 28246, 24359, 34382, 21804, 25252,
20114, 27818, 25143, 33457, 21719, 21326, 29502, 28369, 30011, 21010,
21270, 35805, 27088, 24458, 24576, 28142, 22351, 27426, 29615, 26707,
36824, 32531, 25442, 24739, 21796, 30186, 35938, 28949, 28067, 23462,
24187, 33618, 24908, 40644, 30970, 34647, 31783, 30343, 20976, 24822,
29004, 26179, 24140, 24653, 35854, 28784, 25381, 36745, 24509, 24674,
34516, 22238, 27585, 24724, 24935, 21321, 24800, 26214, 36159, 31229,
20250, 28905, 27719, 35763, 35826, 32472, 33636, 26127, 23130, 39746,
27985, 28151, 35905, 27963, 20249, [12117, 28779], 33719, 25110, 24785,
38669, 36135, 31096, 20987, 22334, 22522, 26426, 30072, 31293, 31215,
31637, 32908, 39269, 36857, 28608, 35749, 40481, 23020, 32489, 32521,
21513, 26497, 26840, 36753, 31821, 38598, 21450, 24613, 30142, 27762,
21363, 23241, 32423, 25380, [12047, 20960], 33034, [12080, 24049], 34015,
25216, 20864, 23395, 20238, 31085, 21058, 24760, 27982, 23492, 23490,
35745, 35760, 26082, 24524, 38469, 22931, 32487, 32426, 22025, 26551,
22841, 20339, 23478, 21152, 33626, 39050, 36158, 30002, 38078, 20551,
31292, 20215, 26550, 39550, 23233, 27516, 30417, 22362, 23574, 31546,
38388, 29006, 20860, 32937, 33392, 22904, 32516, 33575, 26816, 26604,
30897, 30839, 25315, 25441, 31616, 20461, 21098, 20943, 33616, 27099,
37492, 36341, 36145, 35265, 38190, 31661, 20214, 20581, 33328, 21073,
39279, 28176, 28293, 28071, 24314, 20725, 23004, 23558, 27974, 27743,
30086, 33931, 26728, 22870, 35762, 21280, 37233, 38477, 34121, 26898,
30977, 28966, 33014, 20132, 37066, 27975, 39556, 23047, 22204, 25605,
38128, 30699, 20389, 33050, 29409, [12179, 35282], 39290, 32564, 32478,
21119, 25945, 37237, 36735, 36739, 21483, 31382, 25581, 25509, 30342,
31224, 34903, 38454, 25130, 21163, 33410, 26708, 26480, 25463, 30571,
31469, 27905, 32467, 35299, 22992, 25106, 34249, 33445, 30028, 20511,
20171, 30117, 35819, 23626, [12081, 24062], 31563, [12100, 26020],
[12198, 37329], 20170, 27941, 35167, 32039, 38182, 20165, 35880, 36827,
38771, 26187, 31105, 36817, 28908, 28024, 23613, 21170, 33606, 20834,
33550, 30555, 26230, 40120, 20140, 24778, 31934, 31923, 32463, 20117,
35686, 26223, 39048, 38745, 22659, 25964, 38236, 24452, 30153, 38742,
31455, 31454, 20928, 28847, 31384, 25578, 31350, 32416, 29590,
33041, 24700, 38393, 28118, 21602, 39297, 20869, 23273, 33021, 22958,
38675, 20522, 27877, 23612, 25311, 20320, 21311, 33147, 36870, 28346,
34091, 25288, 24180, 30910, 25781, 25467, 24565, 23064, 37247, 40479,
23615, 25423, 32834, 23421, 21870, 38218, 38221, 28037, 24744, 26592,
29406, 20957, 23425, 25319, 27870, [12124, 29275], 25197, 38062, 32445,
33043, 27987, 20892, 24324, 22900, 21162, 24594, [12069, 22899], 26262,
34384, 30111, 25386, 25062, 31983, 35834, 21734, 27431, 40485, 27572,
34261, 21589, 20598, 27812, 21866, 36276, 29228, 24085, 24597, 29750,
25293, 25490, 29260, 24472, 28227, 27966, 25856, 28504, 30424, 30928,
30460, 30036, 21028, 21467, 20051, 24222, 26049, 32810, 32982, 25243,
21638, 21032, 28846, 34957, 36305, 27873, 21624, 32986, 22521, 35060,
36180, 38506, 37197, 20329, 27803, 21943, 30406, 30768, 25256, 28921,
28558, 24429, 34028, 26842, 30844, 31735, 33192, 26379, 40527, 25447,
30896, 22383, 30738, 38713, 25209, 25259, 21128, 29749, 27607, 21860,
33086, 30130, [12138, 30382], 21305, 30174, 20731, 23617, 35692, 31687,
20559, [12122, 29255], 39575, 39128, 28418, 29922, 31080, 25735, 30629,
25340, 39057, 36139, 21697, 32856, 20050, 22378, 33529, 33805, 24179,
20973, 29942, 35780, 23631, 22369, 27900, 39047, 23110, 30772, 39748,
36843, 31893, 21078, 25169, 38138, 20166, 33670, 33889, 33769, 33970,
22484, 26420, 22275, 26222, 28006, 35889, 26333, 28689, 26399, 27450,
26646, 25114, 22971, 19971, 20932, 28422, 26578, 27791, 20854, 26827,
22855, 27495, 30054, 23822, 33040, 40784, 26071, 31048, 31041, 39569,
36215, 23682, 20062, 20225, 21551, 22865, 30732, 22120, [12115, 27668],
36804, 24323, 27773, 27875, 35755, 25488, 24688, 27965, 29301, 25190,
38030, 38085, 21315, 36801, 31614, 20191, 35878, 20094, 40660, 38065,
38067, 21069, 28508, 36963, 27973, 35892, 22545, 23884, [12107, 27424],
27465, 26538, 21595, 33108, 32652, 22681, 34103, 24378, 25250, 27207,
38201, 25970, 24708, 26725, 30631, 20052, 20392, 24039, 38808, 25772,
32728, 23789, 20431, 31373, 20999, 33540, 19988, 24623, 31363, 38054,
20405, 20146, 31206, 29748, 21220, 33465, 25810, 31165, 23517, 27777,
38738, 36731, 27682, 20542, 21375, 28165, 25806, 26228, 27696, 24773,
39031, 35831, 24198, 29756, 31351, 31179, 19992, 37041, 29699, 27714,
22234, 37195, 27845, 36235, 21306, 34502, 26354, 36527, 23624, 39537,
28192, 21462, 23094, 40843, 36259, 21435, 22280, 39079, 26435, 37275,
27849, 20840, 30154, 25331, [12125, 29356], 21048, 21149, 32570, 28820,
30264, 21364, 40522, 27063, 30830, 38592, 35033, 32676, 28982, 29123,
20873, 26579, 29924, 22756, 25880, 22199, 35753, 39286, 25200, 32469,
24825, 28909, 22764, 20161, [12040, 20154], 24525, 38887, 20219, 35748,
20995, 22922, 32427, 25172, 20173, [12103, 26085], 25102, 33592, 33993,
33635, 34701, 29076, 28342, 23481, 32466, 20887, 25545, 26580,
[12161, 32905], 33593, 34837, 20754, 23418, 22914, 36785, 20083, 27741,
[12042, 20837], 35109, 36719, 38446, 34122, 29790, 38160, 38384, 28070,
33509, 24369, 25746, 27922, 33832, 33134, 40131, 22622, 36187, 19977,
21441, 20254, 25955, 26705, 21971, 20007, 25620, 39578, 25195, 23234,
29791, [12170, 33394], 28073, 26862, 20711, 33678, 30722, 26432, 21049,
27801, 32433, 20667, 21861, 29022, 31579, 26194, 29642, 33515, 26441,
[12077, 23665], 21024, 29053, 34923, 38378, 38485, 25797, 36193, 33203,
21892, 27733, 25159, 32558, 22674, 20260, 21830, 36175, 26188, 19978,
23578, 35059, 26786, 25422, 31245, 28903, 33421, 21242, 38902, 23569,
21736, 37045, 32461, 22882, 36170, 34503, [12166, 33292], 33293, 36198,
25668, 23556, 24913, 28041, 31038, 35774, 30775, 30003, 21627, 20280,
[12189, 36523], 28145, 23072, 32453, 31070, 27784, 23457, 23158, 29978,
32958, 24910, 28183, 22768, [12131, 29983], 29989, 29298, 21319, 32499,
30465, 30427, 21097, 32988, 22307, 24072, 22833, 29422, 26045, 28287,
35799, [12075, 23608], 34417, [12055, 21313], [12143, 30707], 25342, 26102,
20160, [12215, 39135], 34432, 23454, 35782, 21490, [12142, 30690], 20351,
23630, 39542, 22987, 24335, [12144, 31034], [12064, 22763], 19990, 26623,
20107, 25325, 35475, 36893, 21183, 26159, 21980, 22124, 36866, 20181,
20365, 37322, 39280, [12114, 27663], 24066, 24643, 23460, 35270, 35797,
25910, [12095, 25163], [12216, 39318], 23432, 23551, 25480, 21806, 21463,
30246, 20861, 34092, 26530, 26803, 27530, 25234, 36755, 21460, 33298,
28113, 30095, 20070, 36174, 23408, 29087, 34223, 26257, 26329, 32626,
34560, [12233, 40653], [12239, 40736], 23646, 26415, 36848, 26641, 26463,
25101, 31446, 22661, 24246, 25968, 28465, 24661, 21047, 32781, 25684,
34928, 29993, 24069, 26643, 25332, 38684, 21452, 29245, 35841,
[12116, 27700], 30561, 31246, 21550, 30636, 39034, 33308, 35828, 30805,
26388, 28865, 26031, 25749, 22070, 24605, 31169, 21496, 19997, 27515,
32902, 23546, 21987, 22235, 20282, 20284, 39282, 24051, 26494, 32824,
24578, 39042, 36865, 23435, 35772, 35829, 25628, 33368, 25822, 22013,
33487, 37221, 20439, 32032, 36895, 31903, 20723, 22609, 28335, 23487,
35785, 32899, 37240, 33948, 31639, 34429, 38539, 38543, 32485, 39635,
30862, 23681, 31319, 36930, 38567, 31071, 23385, 25439, 31499, 34001,
26797, 21766, 32553, 29712, 32034, 38145, 25152, 22604, 20182, 23427,
22905, 22612, 29549, 25374, 36427, 36367, 32974, 33492, 25260, 21488,
27888, 37214, 22826, 24577, 27760, 22349, 25674, 36138, 30251, 28393,
22363, 27264, 30192, 28525, 35885, 35848, 22374, 27631, 34962, 30899,
25506, 21497, 28845, 27748, 22616, 25642, 22530, 26848, 33179, 21776,
31958, 20504, 36538, 28108, 36255, 28907, 25487, 28059, 28372, 32486,
33796, 26691, 36867, 28120, 38518, 35752, 22871, 29305, 34276, 33150,
30140, 35466, 26799, 21076, 36386, 38161, 25552, 39064, 36420, 21884,
20307, 26367, 22159, 24789, 28053, 21059, 23625, 22825, 28155, 22635,
[12133, 30000], 29980, 24684, 33300, 33094, 25361, 26465, 36834, 30522,
36339, 36148, 38081, 24086, 21381, 21548, 28867, 27712, 24311, 20572,
20141, 24237, 25402, 33351, 36890, 26704, 37230, 30643, 21516, 38108,
24420, 31461, 26742, 25413, 31570, 32479, 30171, 20599, 25237, 22836,
36879, 20984, 31171, 31361, 22270, 24466, 36884, 28034, 23648,
[12063, 22303], 21520, 20820, 28237, 22242, 25512, 39059, 33151, 34581,
35114, 36864, 21534, 23663, 33216, 25302, 25176, 33073, 40501, 38464,
39534, 39548, 26925, 22949, 25299, 21822, 25366, 21703, 34521, 27964,
23043, [12129, 29926], 34972, 27498, 22806, 35916, 24367, 28286, 29609,
39037, 20024, 28919, 23436, 30871, 25405, 26202, 30358, 24779, 23451,
23113, 19975, 33109, 27754, 29579, 20129, 26505, [12153, 32593], 24448,
26106, 26395, 24536, 22916, 23041, 24013, 24494, 21361, 38886, 36829,
26693, 22260, 21807, 24799, 20026, 28493, 32500, 33479, 33806, 22996,
20255, 20266, 23614, 32428, 26410, 34074, 21619, 30031, 32963, 21890,
39759, 20301, 28205, 35859, 23561, 24944, 21355, 30239, 28201, 34442,
[12098, 25991], 38395, 32441, 21563, 31283, 32010, 38382, 21985, 32705,
29934, 25373, 34583, 28065, 31389, 25105, 26017, 21351, 25569, 27779,
24043, 21596, 38056, 20044, 27745, 35820, 23627, [12102, 26080], 33436,
26791, 21566, 21556, [12111, 27595], 27494, 20116, 25410, 21320, 33310,
20237, 20398, 22366, 25098, 38654, 26212, 29289, 21247, 21153, 24735,
35823, 26132, 29081, 26512, 35199, 30802, 30717, 26224, 22075, 21560,
38177, 29306, 31232, 24687, 24076, 24713, 33181, [12067, 22805], 24796,
29060, 28911, 28330, 27728, 29312, 27268, 34989, 24109, 20064, 23219,
21916, 38115, 27927, 31995, 38553, 25103, 32454, 30606, 34430, 21283,
38686, 36758, 26247, 23777, 20384, 29421, 19979, 21414, 22799, 21523,
25472, 38184, 20808, 20185, 40092, 32420, 21688, 36132, 34900, 33335,
38386, 28046, 24358, 23244, 26174, 38505, 29616, 29486, 21439, 33146,
39301, 32673, 23466, 38519, 38480, 32447, 30456, 21410, 38262,
[12217, 39321], 31665, 35140, 28248, 20065, 32724, 31077, 35814, 24819,
21709, 20139, 39033, 24055, 27233, 20687, 21521, 35937, 33831, 30813,
38660, 21066, 21742, 22179, 38144, 28040, 23477, 28102, 26195,
[12073, 23567], 23389, 26657, 32918, 21880, 31505, 25928, 26964, 20123,
27463, 34638, 38795, 21327, 25375, 25658, 37034, 26012, 32961, 35856,
20889, 26800, 21368, 34809, 25032, 27844, 27899, 35874, 23633, 34218,
33455, 38156, 27427, [12191, 36763], 26032, 24571, [12092, 24515], 20449,
34885, 26143, 33125, 29481, 24826, 20852, 21009, 22411, 24418, 37026,
[12175, 34892], 37266, 24184, 26447, 24615, 22995, 20804, 20982, 33016,
21256, 27769, 38596, 29066, 20241, 20462, 32670, 26429, 21957, 38152,
31168, 34966, 32483, 22687, 25100, 38656, 34394, 22040, 39035, 24464,
35768, 33988, 37207, 21465, 26093, 24207, 30044, 24676, 32110, 23167,
32490, 32493, 36713, 21927, 23459, 24748, 26059, [12126, 29572], 36873,
30307, 30505, 32474, 38772, 34203, 23398, [12147, 31348], 38634,
[12174, 34880], 21195, 29071, 24490, 26092, 35810, 23547, 39535, 24033,
27529, 27739, 35757, 35759, 36874, 36805, 21387, 25276, 40486, 40493,
21568, 20011, 33469, [12123, 29273], 34460, 23830, 34905, 28079, 38597,
21713, 20122, 35766, 28937, 21693, 38409, 28895, 28153, 30416, 20005,
30740, 34578, 23721, 24310, [12180, 35328], 39068, 38414, 28814, 27839,
22852, 25513, 30524, 34893, 28436, 33395, 22576, 29141, 21388, 30746,
38593, 21761, 24422, 28976, 23476, 35866, 39564, 27523, 22830, 40495,
31207, 26472, 25196, 20335, 30113, [12154, 32650], 27915, 38451, 27687,
20208, 30162, 20859, 26679, 28478, 36992, 33136, 22934, 29814, 25671,
23591, 36965, 31377, 35875, 23002, 21676, 33280, 33647, 35201, 32768,
26928, 22094, 32822, 29239, 37326, 20918, 20063, 39029, 25494, 19994,
21494, 26355, 33099, 22812, 28082, [12032, 19968], 22777, 21307, 25558,
38129, 20381, 20234, [12176, 34915], 39056, 22839, 36951, 31227, 20202,
33008, 30097, 27778, 23452, 23016, 24413, 26885, 34433, 20506, 24050,
[12036, 20057], 30691, 20197, 33402, 25233, 26131, [12194, 37009], 23673,
20159, 24441, 33222, 36920, 32900, 30123, 20134, 35028, 24847, 27589,
24518, 20041, 30410, 28322, 35811, 35758, 35850, 35793, 24322, 32764,
32716, 32462, 33589, 33643, 22240, 27575, [12211, 38899], 38452, 23035,
21535, 38134, 28139, 23493, 39278, 23609, 24341, 38544, 21360, 33521,
27185, 23156, 40560, 24212, 32552, 33721, {f: 2, c: 33828}, 33639, 34631,
36814, 36194, 30408, 24433, 39062, 30828, 26144, 21727, 25317, 20323,
33219, 30152, 24248, 38605, 36362, 34553, 21647, 27891, 28044, 27704,
24703, 21191, [12132, 29992], 24189, 20248, 24736, 24551, 23588, 30001,
37038, 38080, 29369, 27833, 28216, [12195, 37193], 26377, 21451, 21491,
20305, 37321, 35825, [12060, 21448], 24188, 36802, 28132, 20110, 30402,
27014, 34398, 24858, 33286, 20313, 20446, 36926, 40060, 24841, 28189,
28180, 38533, 20104, 23089, [12204, 38632], 19982, 23679, 31161, 23431,
35821, [12155, 32701], [12127, 29577], 22495, 33419, 37057, 21505, 36935,
21947, 23786, 24481, 24840, 27442, 29425, 32946, 35465, 28020, 23507,
35029, 39044, 35947, 39533, 40499, 28170, 20900, 20803, 22435, 34945,
21407, 25588, 36757, 22253, 21592, 22278, 29503, 28304, 32536, 36828,
33489, 24895, 24616, 38498, [12104, 26352], 32422, 36234, 36291, 38053,
23731, 31908, [12105, 26376], 24742, 38405, 32792, 20113, 37095, 21248,
38504, 20801, 36816, 34164, 37213, 26197, 38901, 23381, 21277, 30776,
26434, 26685, 21705, 28798, 23472, 36733, 20877, 22312, 21681, 25874,
26242, 36190, 36163, 33039, 33900, 36973, 31967, 20991, 34299, 26531,
26089, 28577, 34468, 36481, 22122, 36896, 30338, 28790, 29157, 36131,
25321, 21017, 27901, 36156, 24590, 22686, 24974, 26366, 36192, 25166,
21939, 28195, 26413, 36711, 38113, 38392, 30504, 26629, 27048, 21643,
20045, 28856, 35784, 25688, 25995, 23429, 31364, 20538, 23528, 30651,
27617, 35449, 31896, 27838, 30415, 26025, 36759, 23853, 23637, 34360,
26632, 21344, 25112, 31449, 28251, 32509, 27167, 31456, 24432, 28467,
24352, 25484, 28072, 26454, 19976, 24080, 36134, 20183, 32960, 30260,
38556, 25307, 26157, 25214, 27836, 36213, 29031, 32617, 20806, 32903,
21484, 36974, 25240, 21746, 34544, 36761, 32773, 38167, 34071, 36825,
27993, 29645, 26015, 30495, 29956, 30759, 33275, 36126, 38024, 20390,
26517, 30137, 35786, 38663, 25391, 38215, 38453, 33976, 25379, 30529,
24449, 29424, 20105, 24596, 25972, 25327, 27491, 25919, 24103, 30151,
37073, 35777, 33437, 26525, [12096, 25903], 21553, 34584, 30693, 32930,
33026, 27713, 20043, 32455, 32844, 30452, 26893, 27542, 25191, 20540,
20356, 22336, 25351, [12108, 27490], 36286, 21482, 26088, 32440, 24535,
25370, 25527, [12164, 33267], 33268, 32622, 24092, 23769, 21046, 26234,
31209, 31258, 36136, 28825, 30164, 28382, 27835, 31378, 20013, 30405,
24544, 38047, 34935, 32456, 31181, 32959, 37325, 20210, 20247,
[12168, 33311], 21608, 24030, 27954, 35788, 31909, 36724, 32920, 24090,
21650, 30385, 23449, 26172, 39588, 29664, 26666, 34523, 26417, 29482,
35832, 35803, 36880, [12149, 31481], 28891, 29038, 25284, 30633, 22065,
20027, 33879, 26609, 21161, 34496, 36142, 38136, 31569, 20303, 27880,
31069, 39547, 25235, [12118, 29226], 25341, 19987, 30742, 36716, 25776,
36186, 31686, 26729, 24196, 35013, 22918, 25758, 22766, 29366, 26894,
38181, 36861, 36184, 22368, 32512, 35846, 20934, 25417, 25305, 21331,
26700, 29730, 33537, 37196, 21828, 30528, 28796, 27978, 20857, 21672,
36164, 23039, 28363, 28100, 23388, 32043, 20180, 31869, 28371,
[12070, 23376], [12163, 33258], 28173, 23383, 39683, 26837, 36394, 23447,
32508, 24635, 32437, 37049, [12187, 36208], 22863, 25549, 31199,
[12188, 36275], 21330, 26063, 31062, 35781, 38459, 32452, 38075, 32386,
22068, 37257, 26368, 32618, 23562, 36981, 26152, 24038, 20304, 26590,
20570, 20316, 22352, 24231, 20109, 19980, 20800, 19984, 24319, 21317,
19989, 20120, 19998, [12224, 39730], 23404, 22121, [12033, 20008], 31162,
[12035, 20031], [12052, 21269], 20039, 22829, [12120, 29243], 21358, 27664,
22239, 32996, 39319, 27603, 30590, 40727, [12034, 20022], 20127, 40720,
20060, 20073, 20115, 33416, 23387, 21868, 22031, 20164, 21389, 21405,
21411, 21413, 21422, 38757, 36189, [12053, 21274], 21493, 21286, 21294,
21310, 36188, 21350, 21347, 20994, 21000, 21006, 21037, 21043,
{f: 2, c: 21055}, 21068, 21086, 21089, 21084, 33967, 21117, 21122, 21121,
21136, 21139, [12044, 20866], 32596, 20155, 20163, 20169, 20162, 20200,
20193, 20203, 20190, 20251, 20211, 20258, 20324, 20213, 20261, 20263,
20233, 20267, 20318, 20327, 25912, 20314, 20317, 20319, 20311, 20274,
20285, 20342, 20340, 20369, 20361, 20355, 20367, 20350, 20347, 20394,
20348, 20396, 20372, 20454, 20456, 20458, 20421, 20442, 20451, 20444,
20433, 20447, 20472, 20521, 20556, 20467, 20524, 20495, 20526, 20525,
20478, 20508, 20492, 20517, 20520, 20606, 20547, 20565, 20552, 20558,
20588, 20603, 20645, 20647, 20649, 20666, 20694, 20742, 20717, 20716,
20710, 20718, 20743, 20747, 20189, 27709, 20312, 20325, 20430,
[12245, 40864], 27718, 31860, 20846, 24061, 40649, 39320, 20865, 22804,
[12051, 21241], 21261, 35335, 21264, 20971, 22809, 20821, [12039, 20128],
20822, 20147, 34926, 34980, 20149, 33044, 35026, 31104, 23348, 34819,
32696, [12046, 20907], 20913, 20925, 20924, 20935, [12045, 20886], 20898,
20901, 35744, {f: 2, c: 35750}, 35754, {f: 2, c: 35764}, 35767,
{f: 2, c: 35778}, 35787, 35791, 35790, {f: 3, c: 35794}, 35798,
{f: 2, c: 35800}, 35804, {f: 2, c: 35807}, 35812, {f: 2, c: 35816}, 35822,
35824, 35827, 35830, 35833, 35836, {f: 2, c: 35839}, 35842, 35844, 35847,
35852, 35855, {f: 2, c: 35857}, {f: 3, c: 35860}, 35865, 35867, 35864,
35869, {f: 3, c: 35871}, 35877, 35879, {f: 2, c: 35882}, {f: 2, c: 35886},
{f: 2, c: 35890}, {f: 2, c: 35893}, [12057, 21353], 21370, 38429, 38434,
38433, 38449, 38442, 38461, 38460, 38466, 38473, 38484, 38495, 38503,
38508, 38514, 38516, 38536, 38541, 38551, 38576, 37015, 37019, 37021,
37017, 37036, 37025, 37044, 37043, 37046, 37050, 37048, 37040, 37071,
37061, 37054, 37072, 37060, 37063, 37075, 37094, 37090, 37084, 37079,
37083, 37099, 37103, 37118, 37124, 37154, 37150, 37155, 37169, 37167,
37177, 37187, 37190, 21005, 22850, 21154, {f: 2, c: 21164}, 21182, 21759,
21200, 21206, 21232, 21471, 29166, 30669, [12085, 24308], [12048, 20981],
20988, [12223, 39727], [12059, 21430], 24321, 30042, 24047, 22348, 22441,
22433, 22654, 22716, 22725, 22737, 22313, 22316, 22314, 22323, 22329,
{f: 2, c: 22318}, 22364, 22331, 22338, 22377, 22405, 22379, 22406, 22396,
22395, 22376, 22381, 22390, 22387, 22445, 22436, 22412, 22450, 22479,
22439, 22452, 22419, 22432, 22485, 22488, 22490, 22489, 22482, 22456,
22516, 22511, 22520, 22500, 22493, 22539, 22541, 22525, 22509, 22528,
22558, 22553, 22596, 22560, 22629, 22636, 22657, 22665, 22682, 22656,
39336, 40729, 25087, 33401, 33405, 33407, 33423, 33418, 33448, 33412,
33422, 33425, 33431, 33433, 33451, 33464, 33470, 33456, 33480, 33482,
33507, 33432, 33463, 33454, {f: 2, c: 33483}, 33473, 33449, 33460, 33441,
33450, 33439, 33476, 33486, 33444, 33505, 33545, 33527, 33508, 33551,
33543, 33500, 33524, 33490, 33496, 33548, 33531, 33491, 33553, 33562,
33542, {f: 2, c: 33556}, 33504, 33493, 33564, 33617, {f: 2, c: 33627},
33544, 33682, 33596, 33588, 33585, 33691, 33630, 33583, 33615, 33607,
33603, 33631, 33600, 33559, 33632, 33581, 33594, 33587, 33638, 33637,
24949, 25004, 24980, 24999, 25015, 25044, 25077, 24541, 38579, 38377,
38379, 38385, 38387, {f: 2, c: 38389}, 38396, 38398, {f: 2, c: 38403},
38406, 38408, {f: 4, c: 38410}, 38415, 38418, {f: 3, c: 38421},
{f: 2, c: 38425}, 20012, [12121, 29247], 25109, 27701, 27732, 27740, 27722,
27811, 27781, 27792, 27796, 27788, {f: 2, c: 27752}, 27764, 27766, 27782,
27817, 27856, 27860, 27821, {f: 2, c: 27895}, 27889, 27863, 27826, 27872,
27862, 27898, 27883, 27886, 27825, 27859, 27887, 27902, 27961, 27943,
27916, 27971, 27976, 27911, 27908, 27929, 27918, 27947, 27981, 27950,
27957, 27930, 27983, 27986, 27988, 27955, 28049, 28015, 28062, 28064,
27998, {f: 2, c: 28051}, 27996, 28000, 28028, 28003, 28186, 28103, 28101,
28126, 28174, 28095, 28128, 28177, 28134, 28125, 28121, 28182, 28075,
28172, 28078, 28203, 28270, 28238, 28267, 28338, 28255, 28294,
{f: 2, c: 28243}, 28210, 28197, 28228, 28383, 28337, 28312, 28384, 28461,
28386, 28325, 28327, 28349, 28347, 28343, 28375, 28340, 28367, 28303,
28354, 28319, 28514, {f: 2, c: 28486}, 28452, 28437, 28409, 28463, 28470,
28491, 28532, 28458, 28425, 28457, 28553, 28557, 28556, 28536, 28530,
28540, 28538, 28625, 28617, 28583, 28601, 28598, 28610, 28641, 28654,
28638, 28640, 28655, 28698, 28707, 28699, 28729, 28725, 28751, 28766,
[12071, 23424], 23428, 23445, 23443, 23461, 23480, 29999, 39582, 25652,
23524, 23534, 35120, 23536, 36423, 35591, 36790, 36819, 36821, 36837,
36846, 36836, 36841, 36838, 36851, 36840, 36869, 36868, 36875, 36902,
36881, 36877, 36886, 36897, {f: 2, c: 36917}, 36909, 36911, 36932,
{f: 2, c: 36945}, 36944, 36968, 36952, 36962, 36955, 26297, 36980, 36989,
36994, 37000, 36995, 37003, [12089, 24400], 24407, 24406, 24408, 23611,
21675, 23632, 23641, 23409, 23651, 23654, 32700, 24362, 24361, 24365,
33396, 24380, 39739, [12076, 23662], 22913, 22915, 22925, {f: 2, c: 22953},
22947, 22935, 22986, 22955, 22942, 22948, 22994, 22962, 22959, 22999,
22974, {f: 2, c: 23045}, 23005, 23048, 23011, 23000, 23033, 23052, 23049,
23090, 23092, 23057, 23075, 23059, 23104, 23143, 23114, 23125, 23100,
23138, 23157, 33004, 23210, 23195, 23159, 23162, 23230, 23275, 23218,
23250, 23252, 23224, 23264, 23267, 23281, 23254, 23270, 23256, 23260,
23305, 23319, 23318, 23346, 23351, 23360, 23573, 23580, 23386, 23397,
23411, 23377, 23379, 23394, 39541, {f: 2, c: 39543}, 39546, 39551, 39549,
{f: 2, c: 39552}, 39557, 39560, 39562, 39568, {f: 2, c: 39570}, 39574,
39576, {f: 3, c: 39579}, {f: 2, c: 39583}, {f: 2, c: 39586}, 39589, 39591,
32415, 32417, 32419, 32421, {f: 2, c: 32424}, 32429, 32432, 32446,
{f: 3, c: 32448}, 32457, {f: 2, c: 32459}, 32464, 32468, 32471, 32475,
{f: 2, c: 32480}, 32488, 32491, {f: 2, c: 32494}, {f: 2, c: 32497}, 32525,
32502, {f: 2, c: 32506}, 32510, {f: 3, c: 32513}, {f: 2, c: 32519},
{f: 2, c: 32523}, 32527, {f: 2, c: 32529}, 32535, 32537, 32540, 32539,
32543, {f: 7, c: 32545}, {f: 4, c: 32554}, {f: 5, c: 32559}, 32565,
[12083, 24186], 30079, [12078, 24027], 30014, 37013, 29582, 29585, 29614,
29602, 29599, 29647, 29634, 29649, 29623, 29619, 29632, 29641, 29640,
29669, 29657, 39036, 29706, 29673, 29671, 29662, 29626, 29682, 29711,
29738, 29787, 29734, 29733, 29736, 29744, 29742, 29740, 29723, 29722,
29761, 29788, 29783, 29781, 29785, 29815, 29805, 29822, 29852, 29838,
{f: 2, c: 29824}, 29831, 29835, 29854, {f: 2, c: 29864}, 29840, 29863,
29906, 29882, {f: 3, c: 38890}, 26444, 26451, 26462, 26440, 26473, 26533,
26503, 26474, 26483, 26520, 26535, 26485, 26536, 26526, 26541, 26507,
26487, 26492, 26608, 26633, 26584, 26634, 26601, 26544, 26636, 26585,
26549, 26586, 26547, 26589, 26624, 26563, 26552, 26594, 26638, 26561,
26621, {f: 2, c: 26674}, {f: 2, c: 26720}, 26702, 26722, 26692, 26724,
26755, 26653, 26709, 26726, 26689, 26727, 26688, 26686, 26698, 26697,
26665, 26805, 26767, 26740, 26743, 26771, 26731, 26818, 26990, 26876,
{f: 2, c: 26911}, 26873, 26916, 26864, 26891, 26881, 26967, 26851, 26896,
26993, 26937, 26976, 26946, 26973, 27012, 26987, 27008, 27032, 27000,
26932, 27084, {f: 2, c: 27015}, 27086, 27017, 26982, 26979, 27001, 27035,
27047, 27067, 27051, 27053, 27092, 27057, 27073, 27082, 27103, 27029,
27104, 27021, 27135, 27183, 27117, {f: 2, c: 27159}, 27237, 27122, 27204,
27198, 27296, 27216, 27227, 27189, 27278, 27257, 27197, 27176, 27224,
27260, 27281, 27280, 27305, 27287, 27307, 29495, 29522, {f: 2, c: 27521},
27527, 27524, {f: 2, c: 27538}, 27533, {f: 2, c: 27546}, 27553, 27562,
36715, 36717, {f: 3, c: 36721}, {f: 2, c: 36725}, 36728, 36727,
{f: 2, c: 36729}, 36732, 36734, {f: 2, c: 36737}, 36740, 36743, 36747,
{f: 3, c: 36749}, 36760, 36762, 36558, 25099, 25111, 25115, 25119, 25122,
25121, 25125, 25124, 25132, 33255, 29935, 29940, 29951, 29967, 29969,
29971, [12097, 25908], {f: 3, c: 26094}, 26122, 26137, 26482, 26115, 26133,
26112, 28805, 26359, 26141, 26164, 26161, 26166, 26165, 32774, 26207,
26196, 26177, 26191, 26198, 26209, 26199, 26231, 26244, 26252, 26279,
26269, 26302, {f: 2, c: 26331}, 26342, 26345, {f: 2, c: 36146}, 36150,
36155, 36157, 36160, {f: 2, c: 36165}, {f: 2, c: 36168}, 36167, 36173,
36181, 36185, 35271, {f: 3, c: 35274}, {f: 4, c: 35278}, 29294, 29343,
29277, 29286, 29295, {f: 2, c: 29310}, 29316, 29323, 29325, 29327, 29330,
25352, 25394, 25520, 25663, 25816, 32772, 27626, 27635, 27645, 27637,
27641, 27653, 27655, 27654, 27661, 27669, {f: 3, c: 27672}, 27681, 27689,
27684, 27690, 27698, 25909, 25941, 25963, 29261, 29266, 29270, 29232,
34402, 21014, 32927, 32924, 32915, 32956, 26378, 32957, 32945, 32939,
32941, 32948, 32951, {f: 4, c: 32999}, 32987, 32962, 32964, 32985, 32973,
32983, 26384, 32989, 33003, 33009, 33012, 33005, {f: 2, c: 33037}, 33010,
33020, 26389, 33042, 35930, 33078, 33054, 33068, 33048, 33074, 33096,
33100, 33107, 33140, {f: 2, c: 33113}, 33137, 33120, 33129,
{f: 2, c: 33148}, 33133, 33127, 22605, 23221, 33160, 33154, 33169, 28373,
33187, 33194, 33228, 26406, 33226, 33211, 33217, 33190, 27428, 27447,
27449, 27459, 27462, 27481, {f: 3, c: 39121}, 39125, {f: 2, c: 39129},
[12110, 27571], 24384, 27586, 35315, 26000, 40785, 26003, 26044, 26054,
26052, 26051, 26060, 26062, 26066, 26070, 28800, 28828, 28822, 28829,
28859, 28864, 28855, 28843, 28849, 28904, 28874, 28944, 28947, 28950,
28975, 28977, 29043, 29020, 29032, 28997, 29042, 29002, 29048, 29050,
29080, 29107, 29109, 29096, 29088, 29152, 29140, 29159, 29177, 29213,
29224, 28780, 28952, 29030, 29113, 25150, 25149, 25155, {f: 2, c: 25160},
31035, 31040, 31046, 31049, {f: 2, c: 31067}, 31059, 31066, 31074, 31063,
31072, 31087, 31079, 31098, 31109, 31114, 31130, 31143, 31155, 24529,
24528, 24636, 24669, 24666, 24679, 24641, 24665, 24675, 24747, 24838,
24845, 24925, 25001, 24989, 25035, 25041, 25094, 32896, [12160, 32895],
27795, 27894, 28156, 30710, 30712, 30720, 30729, {f: 2, c: 30743}, 30737,
26027, 30765, {f: 2, c: 30748}, {f: 3, c: 30777}, 30751, 30780, 30757,
30764, 30755, 30761, 30798, 30829, {f: 2, c: 30806}, 30758, 30800, 30791,
30796, 30826, 30875, 30867, 30874, 30855, 30876, 30881, 30883, 30898,
30905, 30885, 30932, 30937, 30921, 30956, 30962, 30981, 30964, 30995,
31012, 31006, 31028, 40859, [12235, 40697], {f: 2, c: 40699}, 30449, 30468,
30477, 30457, {f: 2, c: 30471}, 30490, 30498, 30489, 30509, 30502, 30517,
30520, {f: 2, c: 30544}, 30535, 30531, 30554, 30568, 30562, 30565, 30591,
30605, 30589, 30592, 30604, 30609, {f: 2, c: 30623}, 30640, 30645, 30653,
30010, 30016, 30030, 30027, 30024, 30043, 30066, 30073, 30083, 32600,
32609, 32607, 35400, 32616, 32628, 32625, 32633, 32641, 32638, 30413,
30437, 34866, {f: 3, c: 38021}, 38027, 38026, {f: 2, c: 38028},
{f: 2, c: 38031}, 38036, 38039, 38037, {f: 3, c: 38042}, {f: 2, c: 38051},
38059, 38058, 38061, 38060, {f: 2, c: 38063}, 38066, 38068,
{f: 5, c: 38070}, {f: 2, c: 38076}, 38079, 38084, {f: 7, c: 38088},
{f: 3, c: 38096}, {f: 3, c: 38101}, 38105, 38104, 38107, {f: 3, c: 38110},
38114, {f: 2, c: 38116}, {f: 2, c: 38119}, 38122, 38121, 38123,
{f: 2, c: 38126}, {f: 3, c: 38131}, 38135, 38137, {f: 2, c: 38140}, 38143,
38147, 38146, {f: 2, c: 38150}, {f: 2, c: 38153}, {f: 3, c: 38157},
{f: 5, c: 38162}, 38168, 38171, {f: 3, c: 38173}, 38178, {f: 2, c: 38186},
38185, 38188, {f: 2, c: 38193}, 38196, {f: 3, c: 38198}, 38204,
{f: 2, c: 38206}, 38210, 38197, {f: 3, c: 38212}, 38217, 38220,
{f: 2, c: 38222}, {f: 3, c: 38226}, {f: 4, c: 38230}, 38235,
{f: 2, c: 38238}, 38237, {f: 2, c: 38241}, {f: 9, c: 38244}, 38255,
{f: 3, c: 38257}, 38202, 30695, 30700, 38601, 31189, 31213, 31203, 31211,
31238, 23879, 31235, 31234, 31262, 31252, 31289, 31287, 31313, 40655,
39333, 31344, 30344, 30350, 30355, 30361, 30372, 29918, 29920, 29996,
40480, 40482, {f: 5, c: 40488}, 40498, 40497, 40502, 40504, 40503,
{f: 2, c: 40505}, 40510, {f: 2, c: 40513}, 40516, {f: 4, c: 40518},
{f: 2, c: 40523}, 40526, 40529, 40533, 40535, {f: 3, c: 40538}, 40542,
40547, {f: 7, c: 40550}, 40561, 40557, 40563, [12135, 30098], 30100, 30102,
30112, 30109, 30124, 30115, {f: 2, c: 30131}, 30136, 30148, 30129, 30128,
30147, 30146, 30166, 30157, 30179, 30184, 30182, 30180, 30187, 30183,
30211, 30193, 30204, 30207, 30224, 30208, 30213, 30220, 30231, 30218,
30245, 30232, 30229, 30233, 30235, 30268, 30242, 30240, 30272, 30253,
30256, 30271, 30261, 30275, 30270, 30259, 30285, 30302, 30292, 30300,
30294, 30315, 30319, 32714, 31462, {f: 2, c: 31352}, 31360, 31366, 31368,
31381, 31398, 31392, 31404, 31400, 31405, 31411, 34916, 34921, 34930,
34941, 34943, 34946, 34978, 35014, 34999, 35004, 35017, 35042, 35022,
35043, 35045, 35057, 35098, 35068, 35048, 35070, 35056, 35105, 35097,
35091, 35099, 35082, 35124, 35115, 35126, 35137, 35174, 35195,
[12134, 30091], 32997, 30386, 30388, 30684, [12158, 32786], 32788, 32790,
32796, 32800, 32802, {f: 3, c: 32805}, 32809, 32808, 32817, 32779, 32821,
32835, 32838, 32845, 32850, 32873, 32881, 35203, 39032, 39040, 39043,
39049, {f: 2, c: 39052}, 39055, 39060, {f: 2, c: 39066}, {f: 2, c: 39070},
{f: 2, c: 39073}, {f: 2, c: 39077}, [12172, 34381], 34388, 34412, 34414,
34431, 34426, 34428, 34427, 34472, 34445, 34443, 34476, 34461, 34471,
34467, 34474, 34451, 34473, 34486, 34500, 34485, 34510, 34480, 34490,
34481, 34479, 34505, 34511, 34484, 34537, {f: 2, c: 34545}, 34541, 34547,
34512, 34579, 34526, 34548, 34527, 34520, 34513, 34563, 34567, 34552,
34568, 34570, 34573, 34569, 34595, 34619, 34590, 34597, 34606, 34586,
34622, 34632, 34612, 34609, 34601, 34615, 34623, 34690, 34594,
{f: 2, c: 34685}, 34683, 34656, 34672, 34636, 34670, 34699, 34643, 34659,
34684, 34660, 34649, 34661, 34707, 34735, 34728, 34770, 34758, 34696,
34693, 34733, 34711, 34691, 34731, 34789, 34732, 34741, 34739, 34763,
34771, 34749, 34769, 34752, 34762, 34779, 34794, 34784, 34798, 34838,
34835, 34814, 34826, 34843, 34849, 34873, 34876, [12152, 32566], 32578,
{f: 2, c: 32580}, 33296, 31482, 31485, 31496, {f: 2, c: 31491}, 31509,
31498, 31531, 31503, 31559, 31544, 31530, 31513, 31534, 31537, 31520,
31525, 31524, 31539, 31550, 31518, 31576, 31578, 31557, 31605, 31564,
31581, 31584, 31598, 31611, 31586, 31602, 31601, 31632, {f: 2, c: 31654},
31672, 31660, 31645, 31656, 31621, 31658, 31644, 31650, 31659, 31668,
31697, 31681, 31692, 31709, 31706, {f: 2, c: 31717}, 31722, 31756, 31742,
31740, 31759, 31766, 31755, 31775, 31786, 31782, 31800, 31809, 31808,
33278, {f: 2, c: 33281}, 33284, 33260, 34884, {f: 3, c: 33313}, 33325,
33327, 33320, 33323, 33336, 33339, {f: 2, c: 33331}, 33342, 33348, 33353,
33355, 33359, 33370, 33375, 33384, 34942, 34949, 34952, 35032, 35039,
35166, 32669, 32671, 32679, {f: 2, c: 32687}, 32690, 31868, 25929, 31889,
31901, 31900, 31902, 31906, 31922, {f: 2, c: 31932}, 31937, 31943,
{f: 2, c: 31948}, 31944, 31941, 31959, 31976, [12169, 33390], 26280, 32703,
32718, 32725, 32741, 32737, 32742, 32745, 32750, 32755, [12151, 31992],
32119, 32166, 32174, 32327, 32411, 40632, 40628, 36211, 36228, 36244,
36241, 36273, 36199, 36205, 35911, 35913, 37194, 37200, {f: 2, c: 37198},
37220, 37218, 37217, 37232, 37225, 37231, {f: 2, c: 37245}, 37234, 37236,
37241, 37260, 37253, 37264, 37261, 37265, {f: 2, c: 37282}, 37290,
{f: 3, c: 37293}, 37301, 37300, 37306, [12183, 35925], 40574, 36280, 36331,
36357, 36441, 36457, 36277, 36287, 36284, 36282, 36292, {f: 2, c: 36310},
36314, 36318, {f: 2, c: 36302}, 36315, 36294, 36332, {f: 2, c: 36343},
36323, 36345, 36347, 36324, 36361, 36349, 36372, 36381, 36383, 36396,
36398, 36387, 36399, 36410, 36416, 36409, 36405, 36413, 36401, 36425,
{f: 2, c: 36417}, {f: 2, c: 36433}, 36426, 36464, 36470, 36476, 36463,
36468, 36485, 36495, 36500, 36496, 36508, 36510, [12184, 35960], 35970,
35978, 35973, 35992, 35988, 26011, 35286, 35294, 35290, 35292, 35301,
35307, 35311, 35390, 35622, 38739, 38633, 38643, 38639, 38662, 38657,
38664, 38671, 38670, 38698, 38701, 38704, 38718, 40832, 40835,
{f: 6, c: 40837}, 40844, 40702, 40715, 40717, [12203, 38585],
{f: 2, c: 38588}, 38606, 38610, 30655, 38624, 37518, 37550, 37576, 37694,
37738, 37834, 37775, 37950, 37995, 40063, 40066, {f: 4, c: 40069}, 31267,
40075, 40078, {f: 3, c: 40080}, {f: 2, c: 40084}, {f: 2, c: 40090},
{f: 6, c: 40094}, {f: 5, c: 40101}, 40107, {f: 2, c: 40109},
{f: 8, c: 40112}, {f: 4, c: 40122}, {f: 4, c: 40132}, {f: 7, c: 40138},
{f: 3, c: 40147}, {f: 3, c: 40151}, {f: 2, c: 40156}, 40159, 40162, 38780,
38789, {f: 2, c: 38801}, 38804, 38831, 38827, 38819, 38834, 38836, 39601,
39600, 39607, 40536, 39606, 39610, 39612, 39617, 39616, 39621, 39618,
{f: 2, c: 39627}, 39633, 39749, 39747, 39751, 39753, 39752, 39757, 39761,
39144, 39181, 39214, 39253, 39252, [12221, 39647], 39649, 39654, 39663,
39659, 39675, 39661, 39673, 39688, 39695, 39699, 39711, 39715,
{f: 2, c: 40637}, 32315, 40578, {f: 2, c: 40583}, 40587, 40594, 37846,
40605, 40607, {f: 3, c: 40667}, 40672, 40671, 40674, 40681, 40679, 40677,
40682, 40687, 40738, 40748, 40751, 40761, 40759, {f: 2, c: 40765}, 40772,
12295, {s: 13}, 30362, 34297, 31001, 24859, 39599, 35158, 22761, 32631,
25850, 25943, 38930, 36774, 32070, 24171, 32129, 37770, 35607, 39165,
23542, 22577, 39825, 36649, [12185, 35997], 37575, 29437, 20633, 24970,
32179, 31558, 30050, 25987, 24163, 38281, 37002, 32232, 36022, 35722,
36783, 36782, 27161, 40009, 30303, 28693, 28657, 36051, 25839, 39173,
25765, 37474, 37457, 39361, 35036, 36001, 21443, 34870, 27544, 24922,
24920, 29158, 33980, 33369, 20489, 28356, 21408, 20596, 28204, 23652,
35435, 25881, 25723, 34796, 39262, 35730, 32399, 37855, 29987, 38369,
39019, 22580, 22039, [12199, 38263], 20767, 33144, 24288, 26274, 37396,
[12190, 36554], 24505, 22645, 38515, 35183, 31281, 25074, 35488, 39425,
36978, 39347, [12242, 40786], 29118, 34909, 34802, 23541, 30087, 36490,
31820, 32162, 37276, 37604, 38619, 30990, 20786, 35320, 34389, 20659,
30241, 38358, 21109, 37656, 32020, 32189, 36781, 35422, 36060, 32880,
24478, 21474, 36517, 31428, 37679, 36948, 24118, 36024, 25812, 21934,
37170, 25763, 33213, 24986, 35477, 24392, 30070, 25803, 40680, 34153,
27284, 25623, 23798, 31153, 23566, 29128, 37159, 25973, 28364, 36958,
32224, 39003, 40670, 22666, 38651, 28593, 37347, 35519, 35548, 37336,
38914, 37664, 35330, 26481, 21205, 26847, 20941, [12222, 39717], 29346,
29544, 35712, 36077, 37709, 37723, 26039, 32222, 38538, 23565, 22136,
38931, 37389, 22890, 22702, 40285, 38989, 35355, 24801, 39187, 20818,
29246, 39180, 36019, 30332, 32624, 38309, 31020, 37353, 29033, 31684,
36009, 39151, 35370, 32033, [12214, 39131], 35513, 24290, 36027, 32027,
22707, 22894, 24996, 31966, 35920, 26963, 37586, [12213, 39080], 30219,
39342, 32299, 35575, 40179, 33178, 36667, 25771, 36628, 36070, 24489,
36000, 35331, 23142, 32283, 35442, 37411, 33995, 24185, 36245, 36123,
23713, 21083, 37628, 32177, 23831, 37804, 25841, 40255, 38307, 37499,
20491, 32102, 40852, 38799, 36002, 37390, 28317, 27083, 36092, 34865,
39015, 21102, 38364, 35264, 39208, 24931, 36011, 24291, 35215, 27512,
[12244, 40860], 38312, 36556, 35437, 27331, 36020, 21130, 36645, 37707,
22283, 36942, 39405, 38867, 28450, 34399, 38305, 40372, 36032, 36703,
40251, 32005, 22778, 35703, 28396, 22057, 33775, 30059, 21123, 35441,
25079, 22750, 27489, 29872, 36996, 32233, 35594, 25582, 36637, 36036,
31330, 26371, 29172, 21295, 35569, 35496, 32362, 33911, 28222, 29554,
36008, 31117, 25802, 27231, 31309, 39249, 35663, 40388, 32318, 32221,
26997, 36655, 32026, 25824, 24190, 34186, 21137, 28639, 35336, 35352,
38555, 32380, 32000, 22846, 33698, 38960, 36040, 37440, 20729, 39381,
27570, 30435, 22533, 31627, 38291, 33393, 32216, 32365, 27298, 40572,
25536, 25791, 31777, 20745, 34214, 27323, 37970, 36368, 36068,
[12178, 35211], 37749, 33382, 21133, 39198, 28472, 28666, 28567, 23559,
28479, 34083, 27123, 22892, 35611, 37292, 33184, 28550, 39509, 23308,
25898, 37496, 30703, 20709, 39171, 32371, 32094, 36686, 36611, 38542,
31680, 28500, 32080, 35489, 32202, 37670, 20677, 35641, 36914, 29180,
30433, 21185, 33686, 39912, 39514, 32147, 38968, 37857, 24465, 30169,
31478, 31998, 33290, 39378, 33289, 25818, 37624, 25084, 21127, 40273,
32121, 35258, 35363, 32118, 37406, 36557, 39423, 38283, 20977, 38982,
27579, 35506, 22718, 25031, 25715, 24235, 35122, 35463, 22602, 20744,
23532, 31014, 26336, 34407, 24011, 31418, 39243, 28528, 25844, 38346,
34847, 33240, 33802, 20358, 36084, 34253, 27396, 25876, 31811, 38348,
34349, 28734, 35733, 25900, 35261, 25078, 32412, 29211, 28651, 25736,
21214, 28551, 27138, 37939, 22744, 39006, 31852, 38626, 28757, 35023,
39881, 31150, 40599, 21426, 21237, 31019, 27511, 28701, 38584, 20486,
32879, 34030, 36899, 37934, 24976, 28451, 31806, 25986, 33225, 37832,
25088, 29001, 32244, 31975, 20841, 36635, 35538, 30274, 36988, 37904,
29557, 33256, 37168, 40023, 36035, 40801, 37428, 38728, 23994, 38936,
39230, 21129, [12243, 40845], 32894, 22184, 31840, 22751, 25871, 38580,
27155, 23105, 25695, 31757, 34310, 30439, 39025, 24300, 29200, 25796,
28407, 34396, 39791, 36034, 37682, 38520, 39522, 37569, 23650, 32311,
24942, 28670, 32209, 24018, 25891, 23423, 28772, 20098, 25476, 36650,
20523, 20374, 28138, 32184, 35542, 34367, 32645, 37007, 38012, 31854,
39486, 39409, 32097, 23229, 29802, 30908, 34718, [12218, 39340], 39393,
21966, 36023, [12230, 40613], 36067, 36993, 30622, 39237, 34875, 28415,
35646, 37672, 37466, 36031, 37762, [12200, 38272], 24758, 20497, 37683,
22818, 35598, 24396, 35219, 32191, 32236, 24287, 28357, 25003, 38313,
40180, 37528, 35628, 35584, 30045, 37385, 32013, 38627, 25747, 33126,
24817, 39719, 39186, 25836, 33193, 25862, 37312, [12227, 40165], 32886,
22169, 38007, 37811, 27320, 29552, 23527, 25840, 28632, 37397, 32016,
33215, 28611, 36786, 30247, 35582, 27472, 40407, 27590, 22036, 28442,
30436, 40848, 36064, 22132, 40300, 39449, 39108, 38971, 36007, 34315,
24977, 35413, 28497, 38935, 25778, 37610, 20693, 27192, 35676, 33229,
[12241, 40778], 39438, 35912, 21843, 27683, 35350, 29309, 37370, 37467,
36983, 31805, 35609, 37666, 37463, 28154, 35700, 22649, 27085, 21958,
22715, 34196, 25654, 37740, 27211, 21932, 20689, 32761, 31429, 31434,
27453, 35242, 23522, 36629, 27691, 20670, 38915, 35531, 24950, 29898,
31406, 36264, 21312, 36544, 39493, 40818, 39028, 27402, 21240, 40306,
30906, 35731, 39250, 25854, 32350, 29105, 38860, 35469, 32009, 27054,
32104, 36575, 37613, 38287, 28516, 28753, 34217, 39955, 36093, 20632,
21930, 39479, 25475, 28544, 27578, 32023, 31721, 26348, 38275, 38493,
36109, 32341, 20663, 36062, 29138, 32057, 36050, 25448, 25885, 25086,
35373, 32051, 23529, 23352, 33102, 28402, 32882, 32361, 21213, 32854,
24107, 29509, 28629, 35433, 26178, 34645, 23526, 35672, 39387, 21218,
36969, 37323, 39166, 35222, 35430, 22781, 29560, 27166, 36664, 26360,
36118, 23660, 34899, 27193, 31466, 25976, 24101, 38617, 35504, 38918,
35500, 30889, 29197, 32114, 39164, 39686, 32883, 24939, 38924, 35359,
35494, 25851, 34311, 35380, 32901, 38614, 38568, 32143, 27506, 23403,
25613, 32302, 29795, 37782, 29562, 25787, 33274, 24907, 25892, 36010,
30321, 28760, 22727, 35674, 35527, 22022, 28271, 29145, 28644, 32295,
35342, 39472, 35588, 37563, 38988, 39636, 26781, 36028, 37941, 24307,
32893, 28916, 37509, 32113, 38957, 22294, 22615, 22296, 38973, 40213,
39345, 39389, 27234, 31402, 35178, 24398, 28771, 38929, 33836, 32178,
[12209, 38859], 36949, 22285, 29234, 28656, 32173, 33894, 20553, 20702,
32239, 35586, 34907, 32862, 32011, 31337, 21839, 25790, 34680, 28198,
31401, 21978, 37794, 28879, 35491, 28961, 34154, 22626, 38695, 21209,
35492, 37675, 29351, 35186, 32722, 37521, 25138, 32048, 34662, 36676,
23805, 20448, 29433, 22151, 37697, 39854, 32406, 36066, 37532, 38289,
39023, 38570, 29694, 29563, 32291, 39201, 25010, 32171, 38002, 37129,
35443, 38911, 38917, 34157, 22210, 37559, 26313, 22063, 21332, 25406,
33029, 35559, 23531, 28681, 35613, 37573, 37313, 33288, 37561, 32137,
38920, 35377, 32210, 32396, 36562, 25080, 36984, 30316, 32098, 23416,
21211, 35426, 23563, 39348, 35347, 35338, 36956, 22739, 40201, 40232,
21854, 20126, 35357, 38329, 40573, 22196, 38996, 38331, 33399, 21421,
30831, 35578, 39511, 40230, 26954, 25562, 30221, 38525, 30306, 39178,
27171, 22575, 35617, 34277, 29242, [12212, 38913], 26989, 33865, 37291,
37541, 38948, 36986, 20736, 34811, 34269, 20740, 25014, 32681, 35427,
35696, 35516, 35695, 32377, 34093, 38512, 37504, 39154, 38577, 27387,
23344, 40441, 25033, 32403, 29801, 34722, 29151, 29074, 34821, 36111,
31310, 21938, 25793, 20653, 30320, 36404, 20778, 24962, 37109, 37438,
29494,
39729,
22291,
38549,
36124,
36104,
36670,
36249,
38499,
25711,
35589,
36015,
35037,
28609,
21959,
21108,
20674,
33248,
35398,
35436,
35537,
35556,
35610,
38488,
24048,
22557,
34086,
34113,
40367,
34334,
25681,
22216,
22130,
22209,
23943,
24020,
39219,
39223,
25006,
24818,
38373,
38332,
28696,
28543,
28722,
23255,
23321,
39394,
39480,
{f: 2,
32060,
32186,
32217,
32265,
32306,
32408,
29914,
27355,
27292,
27315,
36564, 36571, 36594, 36603, 36708, 36601, 36604, 36587, 36580, 36706,
36602, 36606, 36618, 36615, 36613, 36626, 36646, {f: 2, c: 36638}, 36636,
36659, 36678, 36692, 25108, 25127, 29964, 26311, 26308, 26249, 26326,
36033, 36016, 36026, 36029, 36100, 36018, 36037, 36112, 36049, 36058,
36053, 36075, 36071, 36091, 35224, 35244, 35233, 35263, 35238, 35247,
35250, 35255, 27647, 27660, 27692, 29272, 26407, 33110, 33242, 33051,
33214, 33121, 33231, 27487, {f: 2, c: 39086}, 39094, 39100, 39110, 39112,
36674, 40783, 26005, 29036, 29010, 29079, 29121, 29148, 29182, 31152,
31118, 31146, 25055, 24932, 25059, 25095, 28585, 30959, 30893, 30824,
30904, 31018, 31025, 30820, 30973, 30951, 30947, 40853, 30616, 30558,
30652, 32646, 32648, {f: 3, c: 37330}, 37337, 37335, 37333, 37367, 37351,
37348, 37702, 37365, 37369, 37384, 37414, 37445, 37393, 37392, 37377,
37415, 37380, 37413, 37376, 37434, 37478, 37431, 37427, 37461, 37437,
37432, 37470, {f: 2, c: 37484}, 37439, 37984, 37424, 37449, 37448, 37453,
37422, 37433, 37944, 37548, 37536, 37498, 37546, 37614, 37583, 37891,
37603, 37946, 37553, 37542, 37799, 37526, 37580, 37545, 37877, 37523,
37503, 37801, 37530, 37658, 37547, 37507, 37899, 37544, 37539, 37906,
37688, 37617, 37847, 37605, 37616, 37615, 37608, 37564, 37597, 37622,
{f: 2, c: 37926}, 37571, 37599, 37606, 37650, 37638, 37737, 37659, 37696,
37633, 37653, 37678, 37699, {f: 2, c: 37639}, 37663, 37657, 37733, 37703,
37750, 37716, 37732, 37802, 37744, 37764, 37860, 37848, 37928, 37767,
37836, 37784, 37816, 37823, 37798, 37808, 37813, 37964, 37858,
{f: 2, c: 37852}, 37837, 37854, 37827, 37831, 37841, 37908, 37917, 37879,
37989, 37907, 37997, 37920, 38009, 37881, 37913, 37962, 37938, 37951,
37972, 37987, 37758, 31329, 40169, 40182, 40199, 40198, 40227, 40327,
40469, 40221, 40223, 40421, 40239, 40409, 40240, 40258, 40478, 40275,
40477, 40288, 40274, 40435, 40284, 40289, 40339, 40298, 40303, 40329,
40344, 40346, 40384, 40357, 40361, 40386, 40380, 40474, 40403, 40410,
40431, 40422, 40434, 40440, 40460, 40442, 40475, 30308, 30296, 30311,
30210, {f: 2, c: 30278}, 30281, 30238, 30267, {f: 2, c: 30317}, 30313,
30322, 31431, 31414, 35168, 35123, 35165, 35143, 35128, 35172, 30392,
32814, 32812, 32889, 32885, 38919, {f: 2, c: 38926}, 38945, 38940, 28481,
38950, 38967, 38990, 38995, 39027, 39010, 39001, 39013, 39020, 39024,
34787, 34822, 34566, 34851, 34806, 34554, 34799, 34692, 34832, 34760,
34833, 34747, 34766, 32588, 31716, 31591, 31849, 31731, 31744, 31691,
31836, 31774, 31787, 31779, 31850, 31839, 33380, 33387, 35018, 32677,
31986, 31990, 31965, 32310, 40617, 36274, 37317, 37315, 40570, 36489,
36428, 36498, 36474, 36437, 36506, 36491, 36499, 36497, 36513, 36451,
36522, 36518, 35316, 35318, 38746, 38722, 38717, 38724, 40788, 40799,
40793, 40800, 40796, 40806, 40812, 40810, 40823, [12236, 40701], 40703,
40713, 35726, 38014, 37864, 39799, 39796, 39809, 39811, 39822, 40056,
31308, 39826, 40031, 39824, 39853, 39834, 39850, 39838, 40045, 39851,
39837, 40024, 39873, 40058, 39985, 39993, 39971, 39991, 39872, 39882,
39879, 39933, 39894, {f: 2, c: 39914}, 39905, 39908, 39911, 39901, 39906,
39920, 39899, 39924, 39892, 40029, 39944, 39952, 39949, 39954, 39945,
39935, 39968, 39986, 39981, 39976, 39973, 39977, 39987, 39998, 40008,
39995, 39989, 40005, 40022, 40020, 40018, 40039, 38851, 38845, 38857,
40379, 39631, 39638, 39637, 39768, 39758, 39255, 39260, 39714, 40695,
40690, 35180, 38342, 37686, 24390, 34068, 32404, 40803, 22137, 40725,
22081, 39662, 35079, 31296, 39091, 38308, 39693, 36852, 24409, 31339,
39138, 20642, 34193, 20760, 25458, 21067, 30543, 32397, 26310, 30637,
[12228, 40565], 22217, 40692, 28635, 25054, 30663, 28720, 40629, 34890,
38370, 38854, 31844, 32308, 38822, 40623, 22220, 39089, 27311, 32590,
31984, 20418, 32363, 40569, 22190, 39706, 33903, 31142, 31858, 39634,
38587, 32251, 35069, 30787, {f: 10, c: 8560}, {f: 2, c: 714}, 729, 8211,
8213, 8229, 8245, 8453, 8457, {f: 4, c: 8598}, 8725, 8735, 8739, 8786,
{f: 2, c: 8806}, 8895, {f: 36, c: 9552}, {f: 15, c: 9601}, {f: 3, c: 9619},
{f: 2, c: 9660}, {f: 4, c: 9698}, 9737, 8853, 12306, {f: 2, c: 12317},
{f: 9, c: 12321}, 12963, {f: 2, c: 13198}, {f: 3, c: 13212}, 13217, 13252,
13262, {f: 2, c: 13265}, 13269, 65072, 65506, 65508, 8481, 12849, 8208,
24019,
{f: 2,
24068,
{f: 7,
{f: 2,
{f: 6,
{f: 2,
{f: 3,
24219,
24244,
{f: 2,
24297,
{f: 3,
{f: 2,
{f: 2,
{f: 3,
24401,
{f: 2,
24442,
24470,
{f: 6,
{f: 2,
{f: 3,
{f: 2,
{f: 2,
{f: 2,
{f: 2,
{f: 5,
{f: 2,
{f: 2,
{f: 2,
{f: 4,
{f: 3,
{f: 2,
{f: 8,
{f: 2,
{f: 2,
{f: 3,
{f: 2,
{f: 2,
{f: 2,
{f: 2,
{f: 2,
{f: 7,
{f: 2,
{f: 3,
{f: 4,
{f: 3,
{f: 2,
25113,
25133,
{f: 3,
{f: 2,
{f: 2,
25213,
{f: 3,
{f: 4,
{f: 2,
{f: 2,
{f: 4,
{f: 2,
{f: 3,
27984,
{f: 2,
{f: 2,
28038,
28060,
{f: 2,
{f: 4,
{f: 2,
28148,
{f: 2,
{f: 2,
28211,
{f: 8,
{f: 2,
{f: 3,
{f: 5,
{f: 2,
28341,
{f: 3,
{f: 3,
{f: 2,
{f: 3,
{f: 4,
{f: 2,
{f: 3,
{f: 3,
{f: 6,
{f: 2,
{f: 8,
{f: 2,
{f: 2,
{f: 7,
{f: 2,
{f: 8,
{f: 3,
28702,
{f: 2,
{f: 7,
{f: 2,
{f: 3,
{f: 4,
28819,
{f: 3,
{f: 4,
{f: 4,
28920,
{f: 2,
{f: 8,
29003,
29027,
29049,
{f: 4,
{f: 5,
29106,
{f: 4,
{f: 3,
{f: 5,
29181,
},
// Input: Uint8Array of component values, each value scaled to [0,255]
// Output: Uint8Array of rgb values, each value scaled to [0,255]
getRgbBuffer: function ColorSpace_getRgbBuffer(input) {
error('Should not call ColorSpace.getRgbBuffer: ' + input);
}
};
ColorSpace.parse = function ColorSpace_parse(cs, xref, res) {
var IR = ColorSpace.parseToIR(cs, xref, res);
if (IR instanceof AlternateCS)
return IR;
return ColorSpace.fromIR(IR);
};
ColorSpace.fromIR = function ColorSpace_fromIR(IR) {
var name = isArray(IR) ? IR[0] : IR;
switch (name) {
case 'DeviceGrayCS':
return new DeviceGrayCS();
case 'DeviceRgbCS':
return new DeviceRgbCS();
case 'DeviceCmykCS':
return new DeviceCmykCS();
case 'PatternCS':
var basePatternCS = IR[1];
if (basePatternCS)
basePatternCS = ColorSpace.fromIR(basePatternCS);
return new PatternCS(basePatternCS);
case 'IndexedCS':
var baseIndexedCS = IR[1];
var hiVal = IR[2];
var lookup = IR[3];
return new IndexedCS(ColorSpace.fromIR(baseIndexedCS), hiVal, lookup);
case 'AlternateCS':
var numComps = IR[1];
var alt = IR[2];
var tintFnIR = IR[3];
return new AlternateCS(numComps, ColorSpace.fromIR(alt),
PDFFunction.fromIR(tintFnIR));
case 'LabCS':
var whitePoint = IR[1].WhitePoint;
var blackPoint = IR[1].BlackPoint;
var range = IR[1].Range;
return new LabCS(whitePoint, blackPoint, range);
default:
error('Unkown name ' + name);
}
return null;
};
ColorSpace.parseToIR = function ColorSpace_parseToIR(cs, xref, res) {
if (isName(cs)) {
var colorSpaces = res.get('ColorSpace');
if (isDict(colorSpaces)) {
var refcs = colorSpaces.get(cs.name);
if (refcs)
cs = refcs;
}
}
cs = xref.fetchIfRef(cs);
var mode;
if (isName(cs)) {
mode = cs.name;
this.mode = mode;
switch (mode) {
case 'DeviceGray':
case 'G':
return 'DeviceGrayCS';
case 'DeviceRGB':
case 'RGB':
return 'DeviceRgbCS';
case 'DeviceCMYK':
case 'CMYK':
return 'DeviceCmykCS';
case 'Pattern':
return ['PatternCS', null];
default:
error('unrecognized colorspace ' + mode);
}
} else if (isArray(cs)) {
mode = cs[0].name;
this.mode = mode;
switch (mode) {
case 'DeviceGray':
case 'G':
return 'DeviceGrayCS';
case 'DeviceRGB':
case 'RGB':
return 'DeviceRgbCS';
case 'DeviceCMYK':
case 'CMYK':
return 'DeviceCmykCS';
case 'CalGray':
return 'DeviceGrayCS';
case 'CalRGB':
return 'DeviceRgbCS';
case 'ICCBased':
var stream = xref.fetchIfRef(cs[1]);
var dict = stream.dict;
var numComps = dict.get('N');
if (numComps == 1)
return 'DeviceGrayCS';
if (numComps == 3)
return 'DeviceRgbCS';
if (numComps == 4)
return 'DeviceCmykCS';
break;
case 'Pattern':
var basePatternCS = cs[1];
if (basePatternCS)
basePatternCS = ColorSpace.parseToIR(basePatternCS, xref, res);
return ['PatternCS', basePatternCS];
case 'Indexed':
case 'I':
var baseIndexedCS = ColorSpace.parseToIR(cs[1], xref, res);
var hiVal = cs[2] + 1;
var lookup = xref.fetchIfRef(cs[3]);
if (isStream(lookup)) {
lookup = lookup.getBytes();
}
return ['IndexedCS', baseIndexedCS, hiVal, lookup];
case 'Separation':
case 'DeviceN':
var name = cs[1];
var numComps = 1;
if (isName(name))
numComps = 1;
else if (isArray(name))
numComps = name.length;
var alt = ColorSpace.parseToIR(cs[2], xref, res);
var tintFnIR = PDFFunction.getIR(xref, xref.fetchIfRef(cs[3]));
return ['AlternateCS', numComps, alt, tintFnIR];
case 'Lab':
var params = cs[1].getAll();
return ['LabCS', params];
default:
error('unimplemented color space object "' + mode + '"');
}
} else {
error('unrecognized color space object: "' + cs + '"');
}
return null;
};
/**
* Checks if a decode map matches the default decode map for a color space.
* This handles the general decode maps where there are two values per
* component. e.g. [0, 1, 0, 1, 0, 1] for a RGB color.
* This does not handle Lab, Indexed, or Pattern decode maps since they are
* slightly different.
* @param {Array} decode Decode map (usually from an image).
* @param {Number} n Number of components the color space has.
*/
ColorSpace.isDefaultDecode = function ColorSpace_isDefaultDecode(decode, n) {
if (!decode)
return true;
if (n * 2 !== decode.length) {
warn('The decode map is not the correct length');
return true;
}
for (var i = 0, ii = decode.length; i < ii; i += 2) {
if (decode[i] != 0 || decode[i + 1] != 1)
return false;
}
return true;
};
return ColorSpace;
})();
/**
* Alternate color space handles both Separation and DeviceN color spaces. A
* Separation color space is actually just a DeviceN with one color component.
* Both color spaces use a tinting function to convert colors to a base color
* space.
*/
var AlternateCS = (function AlternateCSClosure() {
function AlternateCS(numComps, base, tintFn) {
this.name = 'Alternate';
this.numComps = numComps;
this.defaultColor = [];
for (var i = 0; i < numComps; ++i)
this.defaultColor.push(1);
this.base = base;
this.tintFn = tintFn;
}
AlternateCS.prototype = {
getRgb: function AlternateCS_getRgb(color) {
var tinted = this.tintFn(color);
return this.base.getRgb(tinted);
},
getRgbBuffer: function AlternateCS_getRgbBuffer(input, bits) {
var tintFn = this.tintFn;
var base = this.base;
var scale = 1 / ((1 << bits) - 1);
var length = input.length;
var pos = 0;
var baseNumComps = base.numComps;
var baseBuf = new Uint8Array(baseNumComps * length);
var numComps = this.numComps;
var scaled = [];
for (var i = 0; i < length; i += numComps) {
for (var z = 0; z < numComps; ++z)
scaled[z] = input[i + z] * scale;
var tinted = tintFn(scaled);
for (var j = 0; j < baseNumComps; ++j)
baseBuf[pos++] = 255 * tinted[j];
}
return base.getRgbBuffer(baseBuf, 8);
},
isDefaultDecode: function AlternateCS_isDefaultDecode(decodeMap) {
return ColorSpace.isDefaultDecode(decodeMap, this.numComps);
}
};
return AlternateCS;
})();
var PatternCS = (function PatternCSClosure() {
function PatternCS(baseCS) {
this.name = 'Pattern';
this.base = baseCS;
}
PatternCS.prototype = {};
return PatternCS;
})();
var IndexedCS = (function IndexedCSClosure() {
return IndexedCS;
})();
var DeviceGrayCS = (function DeviceGrayCSClosure() {
function DeviceGrayCS() {
this.name = 'DeviceGray';
this.numComps = 1;
this.defaultColor = [0];
}
DeviceGrayCS.prototype = {
getRgb: function DeviceGrayCS_getRgb(color) {
var c = color[0];
return [c, c, c];
},
getRgbBuffer: function DeviceGrayCS_getRgbBuffer(input, bits) {
var scale = 255 / ((1 << bits) - 1);
var length = input.length;
var rgbBuf = new Uint8Array(length * 3);
for (var i = 0, j = 0; i < length; ++i) {
var c = (scale * input[i]) | 0;
rgbBuf[j++] = c;
rgbBuf[j++] = c;
rgbBuf[j++] = c;
}
return rgbBuf;
},
isDefaultDecode: function DeviceGrayCS_isDefaultDecode(decodeMap) {
return ColorSpace.isDefaultDecode(decodeMap, this.numComps);
}
};
return DeviceGrayCS;
})();
var DeviceRgbCS = (function DeviceRgbCSClosure() {
function DeviceRgbCS() {
this.name = 'DeviceRGB';
this.numComps = 3;
this.defaultColor = [0, 0, 0];
}
DeviceRgbCS.prototype = {
getRgb: function DeviceRgbCS_getRgb(color) {
return color;
},
getRgbBuffer: function DeviceRgbCS_getRgbBuffer(input, bits) {
if (bits == 8)
return input;
var scale = 255 / ((1 << bits) - 1);
var i, length = input.length;
var rgbBuf = new Uint8Array(length);
for (i = 0; i < length; ++i)
rgbBuf[i] = (scale * input[i]) | 0;
return rgbBuf;
},
isDefaultDecode: function DeviceRgbCS_isDefaultDecode(decodeMap) {
return ColorSpace.isDefaultDecode(decodeMap, this.numComps);
}
};
return DeviceRgbCS;
})();
102, 19, 160, 85, 7, 133, 69, 0, 105, 51, 0, 73, 29, 0, 28, 0, 0, 240, 113,
169, 210, 98, 149, 183, 84, 130, 155, 69, 110, 129, 54, 90, 103, 37, 70, 74,
11, 44, 32, 0, 1, 242, 111, 150, 212, 97, 132, 184, 84, 116, 156, 69, 97,
130, 54, 79, 103, 37, 60, 74, 12, 36, 31, 0, 0, 244, 111, 134, 213, 97, 118,
185, 83, 102, 157, 68, 86, 130, 54, 69, 104, 37, 51, 74, 13, 28, 30, 0, 0,
245, 110, 116, 214, 96, 102, 186, 83, 88, 157, 68, 73, 131, 53, 58, 104, 37,
41, 74, 14, 19, 29, 0, 0, 246, 110, 98, 215, 96, 86, 186, 82, 74, 157, 67,
60, 131, 53, 46, 104, 37, 30, 73, 14, 10, 28, 0, 0, 247, 109, 79, 215, 95,
69, 187, 82, 58, 158, 67, 46, 131, 53, 33, 104, 37, 18, 73, 15, 1, 28, 0, 0,
247, 108, 56, 216, 95, 48, 187, 82, 40, 158, 67, 29, 131, 53, 16, 104, 37,
0, 73, 15, 0, 27, 0, 0, 248, 108, 32, 216, 94, 27, 187, 81, 20, 158, 67, 8,
131, 53, 0, 104, 37, 0, 72, 16, 0, 27, 0, 0, 238, 78, 154, 208, 66, 135,
181, 55, 118, 154, 43, 99, 129, 30, 81, 103, 12, 62, 74, 0, 38, 27, 0, 0,
240, 77, 136, 210, 66, 120, 183, 56, 105, 155, 43, 88, 129, 30, 71, 103, 13,
53, 73, 0, 29, 26, 0, 0, 241, 77, 122, 211, 66, 107, 183, 56, 93, 155, 44,
77, 129, 31, 62, 103, 14, 44, 73, 0, 23, 26, 0, 0, 242, 77, 106, 211, 66,
92, 184, 56, 80, 155, 44, 65, 129, 31, 51, 103, 15, 35, 73, 0, 14, 25, 0, 0,
243, 77, 90, 212, 66, 79, 184, 56, 67, 156, 44, 54, 129, 32, 41, 103, 16,
25, 73, 0, 6, 25, 0, 0, 243, 77, 73, 213, 66, 63, 184, 56, 53, 156, 44, 41,
130, 32, 28, 103, 17, 13, 72, 0, 0, 25, 0, 0, 244, 77, 53, 213, 67, 45, 185,
56, 37, 156, 45, 26, 130, 33, 13, 103, 18, 0, 72, 0, 0, 25, 0, 0, 244, 77,
33, 213, 67, 28, 185, 57, 21, 156, 45, 9, 130, 33, 0, 103, 19, 0, 72, 0, 0,
24, 0, 0, 237, 13, 138, 207, 4, 122, 180, 0, 106, 153, 0, 89, 128, 0, 72,
102, 0, 54, 73, 0, 31, 21, 0, 0, 238, 16, 123, 208, 6, 108, 181, 0, 94, 154,
0, 78, 128, 0, 63, 102, 0, 46, 72, 0, 24, 21, 0, 0, 239, 20, 110, 209, 11,
96, 181, 1, 83, 154, 0, 69, 128, 0, 54, 102, 0, 38, 72, 0, 17, 22, 0, 0,
239, 23, 96, 209, 15, 84, 182, 5, 72, 154, 0, 58, 128, 0, 45, 102, 0, 29,
72, 0, 9, 22, 0, 0, 240, 26, 82, 210, 19, 71, 182, 10, 60, 154, 0, 48, 128,
0, 35, 102, 0, 20, 72, 0, 3, 22, 0, 0, 241, 27, 67, 210, 21, 58, 182, 14,
48, 154, 3, 37, 128, 0, 24, 102, 0, 8, 71, 0, 0, 22, 0, 0, 241, 29, 50, 210,
23, 42, 183, 17, 34, 154, 6, 23, 129, 0, 10, 102, 0, 0, 71, 0, 0, 22, 0, 0,
241, 30, 34, 211, 25, 28, 183, 19, 21, 155, 9, 10, 129, 0, 0, 102, 0, 0, 71,
0, 0, 22, 0, 0, 211, 239, 252, 184, 210, 221, 160, 183, 194, 135, 155, 164,
111, 128, 137, 87, 101, 109, 59, 70, 76, 22, 28, 32, 218, 237, 223, 190,
208, 196, 165, 181, 172, 139, 153, 146, 114, 127, 121, 89, 100, 95, 61, 69,
66, 21, 27, 25, 223, 235, 196, 195, 206, 174, 169, 179, 152, 142, 151, 129,
117, 126, 107, 91, 99, 83, 62, 68, 56, 20, 26, 17, 227, 232, 168, 198, 204,
149, 171, 177, 130, 144, 150, 110, 119, 124, 91, 93, 98, 70, 63, 68, 46, 20,
25, 6, 231, 230, 142, 201, 202, 125, 174, 176, 109, 146, 148, 92, 120, 123,
75, 94, 97, 57, 63, 67, 35, 19, 25, 0, 234, 229, 112, 203, 200, 98, 176,
174, 86, 147, 147, 71, 121, 122, 57, 94, 96, 42, 64, 66, 21, 17, 24, 0, 236,
227, 75, 205, 199, 66, 177, 173, 57, 148, 146, 47, 122, 121, 35, 95, 95, 21,
64, 65, 2, 14, 24, 0, 238, 226, 32, 207, 198, 30, 178, 172, 25, 149, 145,
17, 123, 120, 6, 95, 94, 0, 64, 65, 0, 11, 24, 0, 211, 211, 233, 184, 186,
206, 160, 162, 180, 135, 137, 153, 112, 113, 127, 88, 89, 100, 61, 60, 70,
23, 18, 26, 217, 209, 207, 190, 184, 183, 165, 161, 160, 139, 136, 136, 115,
112, 113, 90, 88, 88, 62, 59, 60, 23, 17, 19, 221, 208, 183, 193, 183, 162,
167, 159, 142, 141, 134, 120, 116, 111, 99, 91, 87, 77, 62, 59, 51, 22, 17,
10, 224, 206, 158, 196, 181, 139, 170, 157, 122, 143, 133, 103, 118, 110,
84, 92, 86, 64, 63, 58, 40, 22, 16, 0, 227, 204, 133, 198, 179, 118, 172,
156, 102, 144, 132, 86, 119, 109, 70, 93, 85, 52, 64, 57, 30, 20, 16, 0,
230, 203, 106, 200, 178, 93, 173, 155, 81, 145, 130, 67, 120, 108, 53, 94,
84, 37, 64, 57, 17, 17, 16, 0, 232, 201, 73, 202, 177, 64, 175, 154, 55,
146, 129, 44, 121, 107, 33, 94, 83, 18, 64, 56, 0, 15, 16, 0, 233, 201, 38,
203, 176, 32, 175, 153, 27, 147, 129, 18, 121, 106, 6, 94, 83, 0, 64, 56, 0,
13, 16, 0, 210, 186, 216, 184, 163, 191, 160, 143, 167, 136, 120, 142, 112,
99, 118, 88, 77, 93, 61, 50, 64, 24, 6, 21, 215, 184, 192, 189, 162, 170,
164, 141, 149, 138, 119, 126, 115, 98, 104, 90, 76, 81, 62, 50, 54, 24, 6,
12, 219, 183, 171, 192, 161, 151, 166, 140, 132, 140, 118, 112, 116, 97, 92,
91, 75, 71, 63, 49, 46, 23, 6, 3, 222, 181, 148, 194, 159, 130, 168, 139,
114, 142, 117, 95, 117, 96, 78, 92, 74, 59, 63, 49, 36, 22, 6, 0, 224, 180,
125, 196, 158, 110, 170, 138, 96, 143, 116, 80, 118, 95, 64, 92, 74, 47, 64,
48, 25, 20, 6, 0, 226, 178, 100, 197, 157, 88, 171, 136, 76, 144, 115, 62,
119, 94, 49, 93, 73, 33, 64, 48, 13, 18, 6, 0, 228, 177, 71, 199, 156, 62,
172, 135, 52, 144, 114, 41, 119, 94, 30, 93, 72, 14, 64, 47, 0, 16, 6, 0,
229, 177, 40, 200, 155, 34, 173, 135, 27, 145, 113, 18, 120, 93, 5, 93, 72,
0, 63, 47, 0, 15, 6, 0, 210, 159, 199, 184, 140, 176, 160, 122, 154, 136,
102, 131, 113, 84, 108, 89, 64, 85, 62, 39, 57, 25, 0, 14, 214, 158, 177,
188, 139, 157, 163, 121, 137, 138, 102, 116, 114, 83, 96, 90, 63, 74, 63,
38, 48, 25, 0, 5, 217, 157, 158, 190, 138, 139, 165, 120, 122, 139, 101,
103, 115, 82, 84, 91, 62, 64, 63, 38, 40, 23, 0, 0, 219, 156, 137, 192, 137,
120, 167, 119, 105, 140, 100, 88, 116, 82, 71, 91, 62, 53, 63, 38, 30, 22,
0, 0, 221, 155, 116, 193, 136, 102, 168, 118, 89, 141, 99, 73, 117, 81, 59,
92, 61, 42, 63, 38, 21, 20, 0, 0, 223, 153, 94, 195, 135, 82, 169, 117, 70,
142, 98, 57, 117, 80, 44, 92, 61, 29, 63, 37, 8, 18, 0, 0, 224, 153, 68,
196, 134, 58, 170, 116, 49, 143, 97, 38, 118, 80, 26, 92, 60, 11, 63, 37, 0,
17, 0, 0, 225, 152, 41, 197, 133, 34, 170, 116, 27, 143, 97, 17, 118, 79, 4,
92, 60, 0, 63, 37, 0, 16, 0, 0, 209, 134, 183, 183, 118, 162, 160, 102, 142,
136, 85, 120, 113, 69, 100, 89, 50, 77, 62, 26, 51, 23, 0, 6, 213, 133, 163,
187, 117, 144, 163, 102, 126, 137, 85, 107, 114, 68, 88, 90, 50, 67, 63, 26,
43, 22, 0, 1, 215, 133, 146, 188, 116, 129, 164, 101, 112, 139, 84, 94, 115,
68, 77, 91, 50, 58, 63, 27, 34, 20, 0, 0, 217, 132, 127, 190, 116, 111, 165,
100, 97, 139, 84, 81, 116, 67, 65, 91, 49, 48, 63, 27, 25, 19, 0, 0, 219,
131, 108, 191, 115, 95, 166, 100, 82, 140, 83, 68, 116, 67, 53, 91, 49, 37,
63, 27, 17, 17, 0, 0, 220, 130, 88, 192, 114, 76, 167, 99, 65, 141, 82, 53,
116, 66, 40, 91, 49, 24, 63, 27, 5, 16, 0, 0, 221, 129, 64, 193, 113, 55,
168, 98, 46, 141, 82, 35, 117, 66, 23, 91, 49, 7, 63, 27, 0, 14, 0, 0, 222,
129, 41, 194, 113, 34, 168, 98, 26, 141, 81, 16, 117, 66, 3, 92, 48, 0, 62,
27, 0, 13, 0, 0, 209, 108, 168, 183, 94, 148, 160, 81, 130, 135, 66, 110,
113, 51, 91, 89, 35, 70, 63, 8, 45, 18, 0, 1, 212, 107, 150, 186, 94, 132,
162, 81, 116, 137, 66, 97, 114, 52, 80, 90, 35, 60, 63, 9, 37, 16, 0, 0,
214, 107, 134, 187, 93, 118, 163, 80, 103, 138, 66, 86, 114, 51, 70, 90, 35,
52, 63, 10, 29, 15, 0, 0, 215, 106, 117, 188, 93, 103, 164, 80, 89, 138, 66,
74, 115, 51, 59, 90, 35, 42, 63, 11, 21, 13, 0, 0, 216, 106, 100, 189, 92,
88, 164, 79, 75, 139, 65, 62, 115, 51, 48, 91, 35, 32, 63, 12, 12, 12, 0, 0,
217, 105, 82, 190, 92, 71, 165, 79, 60, 139, 65, 48, 115, 51, 35, 91, 35,
20, 62, 13, 3, 11, 0, 0, 218, 105, 61, 191, 92, 52, 166, 79, 43, 140, 65,
32, 116, 51, 20, 91, 35, 3, 62, 14, 0, 10, 0, 0, 219, 104, 41, 192, 91, 34,
166, 78, 26, 140, 65, 15, 116, 51, 2, 91, 35, 0, 62, 14, 0, 10, 0, 0, 208,
76, 153, 183, 65, 135, 159, 54, 118, 135, 42, 99, 113, 29, 82, 89, 10, 62,
62, 0, 38, 10, 0, 0, 211, 76, 137, 185, 65, 121, 161, 55, 105, 136, 43, 88,
114, 30, 72, 90, 12, 54, 63, 0, 31, 9, 0, 0, 212, 76, 122, 186, 66, 108,
162, 55, 94, 137, 43, 78, 114, 30, 63, 90, 13, 45, 62, 0, 24, 9, 0, 0, 213,
76, 107, 187, 66, 94, 162, 55, 81, 137, 43, 67, 114, 31, 52, 90, 15, 36, 62,
0, 16, 8, 0, 0, 214, 76, 92, 188, 66, 80, 163, 55, 69, 138, 44, 56, 114, 31,
42, 90, 16, 27, 62, 0, 8, 8, 0, 0, 215, 76, 76, 188, 66, 65, 164, 55, 55,
138, 44, 43, 114, 32, 31, 90, 16, 16, 62, 0, 1, 7, 0, 0, 216, 76, 57, 189,
66, 49, 164, 56, 40, 138, 44, 29, 115, 32, 16, 90, 17, 1, 61, 0, 0, 7, 0, 0,
217, 76, 40, 190, 66, 33, 164, 56, 25, 138, 44, 14, 114, 33, 1, 90, 18, 0,
61, 0, 0, 7, 0, 0, 207, 26, 139, 182, 16, 122, 159, 3, 106, 135, 0, 89, 113,
0, 73, 89, 0, 55, 62, 0, 32, 4, 0, 0, 210, 27, 124, 184, 18, 109, 160, 7,
95, 136, 0, 79, 113, 0, 64, 90, 0, 47, 62, 0, 25, 4, 0, 0, 211, 30, 111,
185, 21, 98, 161, 11, 84, 136, 0, 70, 113, 0, 55, 90, 0, 39, 62, 0, 18, 4,
0, 0, 212, 32, 98, 185, 24, 85, 161, 15, 73, 136, 2, 60, 113, 0, 46, 90, 0,
30, 61, 0, 11, 4, 0, 0, 213, 34, 85, 186, 26, 73, 162, 17, 62, 137, 5, 50,
113, 0, 37, 89, 0, 22, 61, 0, 5, 4, 0, 0, 213, 35, 70, 187, 27, 60, 162, 19,
50, 137, 8, 39, 114, 0, 26, 89, 0, 11, 61, 0, 0, 4, 0, 0, 214, 35, 54, 187,
29, 45, 163, 21, 37, 137, 11, 26, 114, 0, 13, 89, 0, 0, 60, 0, 0, 4, 0, 0,
214, 35, 40, 188, 29, 32, 163, 22, 24, 137, 12, 13, 114, 0, 0, 89, 0, 0, 60,
0, 0, 4, 0, 0, 169, 226, 249, 148, 199, 219, 129, 173, 192, 108, 147, 163,
88, 122, 136, 68, 96, 108, 43, 66, 76, 4, 25, 33, 178, 224, 221, 156, 197,
195, 136, 172, 171, 114, 145, 145, 93, 121, 120, 71, 95, 95, 46, 65, 66, 4,
24, 25, 185, 222, 196, 162, 195, 173, 140, 170, 151, 117, 144, 128, 96, 119,
106, 74, 94, 83, 47, 65, 57, 4, 24, 18, 190, 220, 169, 166, 193, 149, 144,
168, 130, 120, 142, 110, 99, 118, 91, 76, 93, 70, 49, 64, 46, 3, 23, 8, 195,
218, 143, 170, 191, 126, 147, 167, 110, 123, 141, 93, 100, 117, 76, 77, 92,
58, 50, 63, 36, 3, 23, 0, 199, 216, 115, 173, 190, 101, 149, 165, 88, 125,
140, 74, 102, 116, 59, 78, 91, 43, 51, 63, 23, 0, 23, 0, 202, 215, 83, 176,
189, 72, 152, 164, 62, 126, 138, 51, 103, 115, 39, 79, 90, 25, 51, 62, 6, 0,
22, 0, 204, 214, 50, 178, 188, 43, 153, 163, 37, 127, 138, 28, 104, 114, 18,
80, 89, 3, 51, 62, 0, 0, 22, 0, 172, 200, 231, 152, 176, 204, 132, 154, 178,
111, 130, 152, 91, 108, 126, 70, 84, 100, 46, 57, 70, 9, 15, 27, 180, 198,
205, 158, 175, 182, 138, 153, 159, 116, 129, 135, 95, 107, 112, 73, 83, 88,
48, 56, 60, 8, 15, 20, 186, 197, 182, 163, 173, 161, 141, 151, 141, 119,
128, 119, 97, 106, 99, 75, 82, 77, 49, 55, 51, 8, 14, 11, 190, 195, 158,
166, 172, 139, 144, 150, 122, 121, 127, 103, 99, 105, 84, 77, 81, 65, 50,
55, 41, 8, 14, 2, 194, 193, 135, 169, 170, 119, 147, 148, 103, 123, 125, 87,
101, 104, 70, 78, 81, 53, 51, 54, 31, 5, 14, 0, 197, 192, 109, 172, 169, 96,
149, 147, 83, 124, 124, 69, 102, 103, 55, 79, 80, 39, 51, 54, 19, 2, 14, 0,
200, 191, 80, 174, 168, 69, 150, 146, 59, 126, 123, 48, 103, 102, 36, 79,
79, 22, 52, 53, 2, 0, 14, 0, 202, 190, 51, 176, 167, 43, 152, 145, 36, 127,
123, 27, 103, 101, 16, 80, 79, 1, 52, 53, 0, 0, 14, 0, 175, 176, 215, 154,
156, 190, 134, 136, 166, 113, 115, 141, 93, 94, 118, 72, 73, 93, 48, 47, 64,
12, 2, 22, 182, 175, 191, 160, 154, 169, 139, 135, 148, 117, 114, 126, 96,
94, 104, 75, 72, 81, 50, 47, 55, 12, 3, 14, 186, 174, 170, 163, 153, 151,
142, 134, 132, 119, 113, 111, 98, 93, 92, 76, 71, 71, 51, 46, 46, 11, 3, 5,
190, 172, 148, 166, 152, 130, 144, 132, 114, 121, 112, 96, 100, 92, 78, 77,
71, 59, 51, 46, 36, 9, 4, 0, 192, 171, 127, 169, 151, 111, 146, 131, 97,
123, 111, 81, 101, 91, 65, 78, 70, 48, 52, 45, 26, 6, 4, 0, 195, 170, 103,
171, 150, 90, 148, 130, 78, 124, 110, 64, 102, 90, 51, 79, 70, 35, 52, 45,
15, 3, 5, 0, 198, 169, 76, 173, 149, 66, 149, 129, 56, 125, 109, 45, 103,
89, 33, 79, 69, 18, 52, 45, 0, 1, 5, 0, 199, 168, 51, 174, 148, 43, 150,
129, 35, 126, 108, 26, 103, 89, 14, 80, 69, 0, 52, 45, 0, 0, 5, 0, 177, 151,
198, 156, 134, 175, 136, 117, 153, 115, 98, 130, 95, 80, 108, 74, 60, 85,
50, 36, 58, 11, 0, 15, 183, 150, 176, 161, 133, 156, 140, 116, 137, 118, 97,
116, 97, 79, 96, 76, 60, 74, 51, 36, 49, 11, 0, 6, 186, 150, 158, 163, 132,
139, 142, 115, 122, 120, 97, 103, 99, 79, 84, 77, 59, 64, 52, 36, 41, 9, 0,
1, 189, 148, 137, 166, 131, 121, 144, 114, 105, 121, 96, 88, 100, 78, 72,
78, 59, 54, 52, 36, 31, 7, 0, 0, 191, 147, 118, 168, 130, 103, 145, 113, 90,
122, 95, 75, 101, 77, 60, 78, 59, 43, 52, 35, 22, 5, 0, 0, 193, 147, 97,
169, 129, 84, 147, 112, 72, 123, 94, 59, 101, 77, 46, 79, 58, 31, 52, 35,
11, 4, 0, 0, 195, 146, 73, 171, 128, 62, 148, 111, 53, 124, 93, 41, 102, 76,
30, 79, 58, 15, 52, 35, 0, 3, 0, 0, 197, 145, 50, 172, 128, 42, 149, 111,
34, 125, 93, 24, 102, 76, 12, 79, 57, 0, 52, 35, 0, 2, 0, 0, 179, 128, 183,
157, 113, 162, 137, 98, 142, 116, 82, 120, 96, 66, 100, 75, 48, 78, 51, 24,
52, 5, 0, 8, 183, 128, 163, 161, 113, 144, 140, 98, 126, 119, 81, 107, 98,
65, 88, 76, 48, 68, 52, 24, 43, 6, 0, 1, 186, 127, 146, 163, 112, 129, 142,
97, 112, 120, 81, 95, 99, 65, 77, 77, 47, 58, 52, 24, 35, 4, 0, 0, 188, 126,
128, 165, 111, 112, 144, 96, 97, 121, 80, 81, 100, 65, 66, 78, 47, 48, 53,
24, 26, 3, 0, 0, 190, 126, 110, 167, 110, 96, 145, 96, 83, 122, 80, 69, 101,
64, 54, 78, 47, 38, 52, 25, 18, 2, 0, 0, 192, 125, 90, 168, 110, 79, 146,
95, 67, 123, 79, 54, 101, 64, 42, 79, 47, 26, 52, 25, 7, 2, 0, 0, 194, 124,
69, 170, 109, 59, 147, 95, 49, 123, 79, 38, 101, 63, 26, 79, 47, 11, 52, 25,
0, 1, 0, 0, 195, 124, 49, 171, 109, 40, 148, 94, 32, 124, 78, 22, 102, 63,
9, 79, 46, 0, 52, 25, 0, 1, 0, 0, 180, 104, 168, 158, 91, 148, 138, 78, 130,
117, 64, 110, 97, 49, 91, 76, 33, 70, 52, 7, 46, 2, 0, 1, 184, 103, 150,
162, 91, 133, 141, 78, 116, 119, 64, 98, 99, 50, 80, 77, 33, 61, 52, 8, 37,
2, 0, 0, 186, 103, 135, 163, 90, 119, 142, 78, 103, 120, 64, 87, 99, 50, 70,
78, 33, 52, 52, 10, 30, 1, 0, 0, 188, 103, 118, 165, 90, 103, 143, 77, 90,
121, 63, 75, 100, 49, 60, 78, 33, 43, 52, 11, 22, 1, 0, 0, 189, 102, 102,
166, 89, 89, 144, 77, 76, 121, 63, 63, 100, 49, 49, 78, 34, 33, 52, 12, 14,
0, 0, 0, 191, 102, 84, 167, 89, 73, 145, 77, 62, 122, 63, 50, 101, 49, 37,
78, 34, 22, 52, 13, 4, 0, 0, 0, 192, 101, 65, 168, 89, 55, 146, 76, 46, 123,
63, 35, 101, 49, 23, 78, 34, 7, 51, 13, 0, 0, 0, 0, 193, 101, 48, 169, 88,
39, 146, 76, 31, 123, 63, 20, 101, 49, 8, 78, 34, 0, 51, 14, 0, 0, 0, 0,
181, 75, 154, 159, 64, 136, 139, 54, 118, 118, 41, 100, 98, 28, 82, 77, 8,
63, 51, 0, 39, 0, 0, 0, 184, 75, 137, 162, 65, 121, 141, 54, 106, 119, 42,
89, 99, 29, 72, 77, 11, 54, 52, 0, 32, 0, 0, 0, 186, 75, 123, 163, 65, 109,
142, 54, 94, 120, 43, 79, 99, 30, 63, 78, 12, 46, 52, 0, 25, 0, 0, 0, 187,
76, 108, 164, 65, 95, 143, 55, 82, 121, 43, 68, 100, 31, 54, 78, 14, 37, 52,
0, 17, 0, 0, 0, 188, 76, 94, 165, 65, 82, 144, 55, 70, 121, 43, 57, 100, 31,
44, 78, 15, 28, 51, 0, 9, 0, 0, 0, 189, 75, 78, 166, 65, 68, 144, 55, 57,
121, 43, 45, 100, 31, 33, 78, 16, 18, 51, 0, 2, 0, 0, 0, 190, 75, 61, 167,
65, 52, 145, 55, 42, 122, 44, 31, 100, 32, 19, 78, 16, 4, 51, 0, 0, 0, 0, 0,
191, 75, 46, 168, 65, 37, 145, 55, 29, 122, 44, 18, 100, 32, 5, 78, 17, 0,
50, 0, 0, 0, 0, 0, 181, 35, 140, 160, 24, 123, 140, 12, 107, 118, 0, 90, 98,
0, 74, 77, 0, 56, 51, 0, 33, 0, 0, 0, 184, 34, 125, 162, 26, 110, 141, 15,
96, 120, 1, 80, 99, 0, 65, 78, 0, 48, 51, 0, 26, 0, 0, 0, 186, 36, 113, 163,
27, 99, 142, 18, 86, 120, 5, 71, 99, 0, 57, 78, 0, 40, 51, 0, 20, 0, 0, 0,
187, 38, 99, 164, 30, 87, 142, 21, 74, 120, 8, 61, 99, 0, 48, 78, 0, 32, 51,
0, 12, 0, 0, 0, 187, 39, 87, 164, 31, 75, 143, 22, 64, 120, 11, 51, 100, 0,
39, 78, 0, 24, 51, 0, 6, 0, 0, 0, 188, 40, 73, 165, 32, 62, 143, 24, 52,
121, 13, 40, 100, 0, 28, 78, 0, 14, 51, 0, 0, 0, 0, 0, 189, 40, 58, 166, 33,
48, 144, 25, 39, 121, 15, 28, 100, 1, 16, 78, 0, 2, 50, 0, 0, 0, 0, 0, 190,
40, 45, 166, 34, 36, 144, 26, 27, 121, 16, 17, 100, 3, 3, 77, 0, 0, 49, 0,
0, 0, 0, 0, 120, 213, 247, 106, 188, 217, 92, 164, 190, 76, 139, 162, 60,
115, 135, 43, 91, 107, 21, 62, 76, 0, 22, 34, 134, 211, 219, 118, 186, 193,
102, 162, 169, 84, 138, 144, 67, 114, 120, 49, 90, 95, 26, 62, 66, 0, 22,
26, 143, 209, 195, 125, 184, 172, 108, 161, 151, 90, 136, 128, 72, 113, 106,
53, 89, 83, 29, 61, 57, 0, 22, 19, 150, 207, 169, 131, 182, 149, 113, 159,
130, 94, 135, 110, 76, 112, 91, 56, 88, 71, 31, 60, 47, 0, 21, 9, 156, 205,
145, 136, 181, 127, 117, 158, 111, 97, 133, 94, 78, 111, 77, 58, 87, 59, 33,
60, 37, 0, 21, 0, 161, 204, 118, 141, 179, 104, 121, 156, 90, 100, 132, 75,
81, 110, 61, 60, 86, 45, 35, 59, 25, 0, 21, 0, 165, 203, 89, 144, 178, 77,
124, 155, 67, 102, 131, 55, 82, 109, 43, 62, 85, 29, 36, 59, 10, 0, 21, 0,
169, 202, 62, 147, 178, 53, 126, 155, 45, 104, 131, 36, 84, 108, 25, 62, 85,
11, 36, 58, 0, 0, 21, 0, 129, 189, 229, 114, 167, 202, 99, 146, 177, 83,
124, 151, 67, 102, 126, 49, 79, 99, 28, 53, 70, 0, 12, 28, 140, 188, 204,
124, 166, 180, 107, 145, 158, 89, 123, 134, 72, 101, 111, 54, 79, 88, 31,
53, 60, 0, 12, 21, 148, 186, 182, 130, 164, 161, 112, 144, 141, 93, 121,
119, 76, 100, 99, 56, 78, 77, 33, 52, 51, 0, 12, 13, 153, 184, 158, 134,
163, 140, 116, 142, 122, 97, 120, 103, 78, 99, 85, 59, 77, 65, 35, 52, 42,
0, 12, 3, 158, 183, 136, 138, 161, 120, 119, 141, 104, 99, 119, 87, 80, 98,
71, 60, 77, 54, 36, 51, 32, 0, 12, 0, 162, 182, 112, 142, 160, 98, 122, 140,
85, 102, 118, 70, 82, 97, 56, 62, 76, 41, 37, 51, 21, 0, 11, 0, 166, 181,
85, 145, 159, 74, 125, 139, 63, 103, 117, 51, 84, 97, 39, 63, 75, 25, 37,
51, 6, 0, 11, 0, 168, 180, 60, 147, 158, 51, 126, 138, 43, 105, 116, 34, 85,
96, 23, 64, 75, 8, 38, 50, 0, 0, 11, 0, 136, 167, 213, 120, 148, 188, 105,
129, 165, 88, 109, 140, 71, 90, 117, 54, 69, 92, 32, 44, 64, 0, 2, 23, 145,
166, 190, 128, 147, 168, 111, 128, 147, 93, 108, 125, 75, 89, 104, 57, 68,
81, 34, 44, 55, 0, 2, 15, 151, 165, 170, 133, 146, 150, 115, 127, 131, 96,
107, 111, 78, 88, 92, 59, 68, 71, 36, 43, 46, 0, 2, 6, 155, 163, 148, 136,
144, 131, 118, 126, 114, 99, 106, 96, 80, 87, 79, 61, 67, 60, 37, 43, 37, 0,
2, 0, 159, 162, 128, 140, 143, 112, 121, 125, 97, 101, 105, 82, 82, 87, 66,
62, 67, 49, 38, 43, 27, 0, 2, 0, 163, 161, 105, 142, 142, 92, 123, 124, 80,
103, 104, 66, 83, 86, 52, 63, 66, 37, 39, 43, 17, 0, 2, 0, 166, 160, 81,
145, 141, 70, 125, 123, 59, 104, 104, 48, 84, 85, 36, 64, 66, 21, 39, 42, 2,
0, 1, 0, 168, 160, 59, 147, 141, 50, 126, 122, 41, 105, 103, 32, 85, 85, 20,
64, 65, 6, 39, 42, 0, 0, 1, 0, 142, 144, 197, 125, 128, 174, 109, 111, 153,
92, 93, 130, 75, 76, 108, 57, 57, 85, 36, 33, 58, 0, 0, 16, 149, 143, 176,
131, 127, 156, 114, 110, 136, 96, 93, 116, 78, 75, 96, 60, 57, 74, 37, 33,
49, 0, 0, 7, 153, 142, 157, 135, 126, 139, 117, 110, 122, 98, 92, 103, 80,
75, 84, 61, 56, 65, 38, 33, 41, 0, 0, 1, 157, 142, 138, 138, 125, 121, 120,
109, 106, 100, 91, 89, 82, 74, 72, 62, 56, 54, 39, 33, 32, 0, 0, 0, 160,
141, 119, 140, 124, 105, 122, 108, 91, 102, 91, 76, 83, 74, 61, 63, 56, 44,
40, 33, 23, 0, 0, 0, 163, 140, 99, 143, 123, 86, 124, 107, 74, 103, 90, 61,
84, 73, 48, 64, 55, 32, 40, 33, 13, 0, 0, 0, 165, 139, 77, 145, 122, 66,
125, 107, 56, 104, 89, 44, 85, 73, 33, 65, 55, 18, 40, 33, 1, 0, 0, 0, 167,
139, 57, 146, 122, 48, 126, 106, 39, 105, 89, 29, 86, 72, 18, 65, 55, 3, 40,
33, 0, 0, 0, 0, 146, 123, 182, 129, 108, 161, 113, 94, 141, 95, 78, 120, 78,
62, 99, 60, 45, 78, 38, 21, 52, 0, 0, 9, 152, 122, 163, 134, 108, 144, 117,
94, 126, 98, 78, 107, 80, 62, 88, 61, 45, 68, 39, 22, 44, 0, 0, 1, 156, 122,
146, 137, 107, 129, 119, 93, 113, 100, 77, 95, 82, 62, 78, 63, 45, 59, 40,
22, 36, 0, 0, 0, 158, 121, 128, 139, 107, 113, 121, 92, 98, 101, 77, 82, 83,
62, 66, 64, 45, 49, 40, 23, 27, 0, 0, 0, 161, 120, 111, 141, 106, 97, 122,
92, 84, 103, 77, 70, 84, 62, 56, 64, 45, 40, 40, 23, 19, 0, 0, 0, 163, 120,
93, 143, 105, 81, 124, 91, 69, 104, 76, 56, 85, 61, 43, 65, 45, 28, 40, 24,
9, 0, 0, 0, 165, 119, 73, 145, 105, 62, 125, 91, 52, 105, 76, 41, 85, 61,
29, 65, 44, 15, 40, 24, 0, 0, 0, 0, 166, 119, 55, 146, 104, 46, 126, 90, 37,
105, 75, 27, 86, 61, 15, 65, 44, 0, 40, 24, 0, 0, 0, 0, 150, 100, 168, 132,
88, 148, 115, 75, 130, 97, 61, 110, 80, 47, 91, 62, 30, 71, 39, 7, 46, 0, 0,
2, 154, 100, 150, 136, 88, 133, 119, 75, 116, 100, 61, 98, 82, 47, 81, 63,
31, 62, 40, 9, 38, 0, 0, 0, 157, 100, 135, 138, 87, 119, 120, 75, 104, 101,
61, 87, 83, 48, 71, 64, 31, 53, 40, 10, 31, 0, 0, 0, 159, 99, 119, 140, 87,
104, 122, 75, 91, 102, 61, 75, 84, 48, 61, 64, 32, 44, 40, 11, 23, 0, 0, 0,
161, 99, 104, 141, 87, 90, 123, 74, 78, 103, 61, 64, 84, 48, 50, 65, 32, 35,
40, 12, 15, 0, 0, 0, 163, 99, 87, 143, 86, 75, 124, 74, 64, 104, 61, 52, 85,
47, 39, 65, 32, 24, 40, 13, 6, 0, 0, 0, 164, 98, 69, 144, 86, 58, 125, 74,
49, 104, 61, 38, 85, 47, 26, 65, 32, 11, 40, 13, 0, 0, 0, 0, 166, 98, 53,
145, 86, 44, 126, 74, 35, 105, 60, 25, 86, 47, 13, 65, 32, 0, 40, 14, 0, 0,
0, 0, 152, 75, 154, 134, 64, 136, 117, 53, 119, 99, 41, 101, 82, 27, 83, 63,
7, 64, 39, 0, 40, 0, 0, 0, 156, 74, 138, 138, 64, 122, 120, 53, 106, 101,
41, 90, 83, 28, 73, 64, 10, 55, 40, 0, 33, 0, 0, 0, 158, 74, 124, 139, 64,
110, 121, 54, 95, 102, 42, 80, 84, 29, 64, 65, 12, 47, 41, 0, 26, 0, 0, 0,
160, 75, 110, 140, 64, 96, 122, 54, 83, 103, 42, 69, 84, 30, 55, 65, 13, 39,
41, 0, 18, 0, 0, 0, 161, 75, 96, 142, 64, 83, 123, 54, 71, 103, 43, 58, 85,
30, 45, 65, 14, 30, 41, 0, 11, 0, 0, 0, 163, 75, 81, 143, 64, 70, 124, 54,
59, 104, 43, 47, 85, 31, 35, 65, 15, 20, 41, 0, 3, 0, 0, 0, 164, 74, 65,
144, 64, 55, 125, 54, 45, 104, 43, 34, 85, 31, 22, 66, 16, 7, 41, 0, 0, 0,
0, 0, 165, 74, 51, 145, 64, 42, 125, 54, 33, 105, 43, 22, 86, 32, 10, 65,
17, 0, 40, 0, 0, 0, 0, 0, 154, 41, 142, 136, 30, 124, 119, 19, 108, 101, 3,
91, 83, 0, 75, 64, 0, 57, 39, 0, 34, 0, 0, 0, 158, 40, 127, 139, 31, 112,
121, 21, 97, 102, 7, 81, 84, 0, 66, 65, 0, 49, 40, 0, 27, 0, 0, 0, 159, 41,
114, 140, 32, 100, 122, 23, 87, 103, 10, 72, 85, 0, 58, 65, 0, 42, 40, 0,
21, 0, 0, 0, 160, 43, 101, 141, 34, 88, 123, 25, 76, 103, 13, 62, 85, 0, 49,
65, 0, 33, 41, 0, 14, 0, 0, 0, 161, 44, 89, 142, 35, 77, 123, 26, 65, 103,
15, 53, 85, 1, 40, 65, 0, 25, 41, 0, 7, 0, 0, 0, 162, 44, 75, 143, 36, 64,
124, 28, 54, 104, 17, 42, 85, 3, 30, 65, 0, 16, 40, 0, 1, 0, 0, 0, 164, 45,
61, 144, 37, 51, 124, 29, 42, 104, 18, 31, 85, 4, 19, 65, 0, 4, 40, 0, 0, 0,
0, 0, 164, 45, 49, 144, 37, 40, 125, 29, 31, 105, 19, 20, 86, 6, 7, 65, 0,
0, 39, 0, 0, 0, 0, 0, 49, 202, 244, 45, 178, 215, 38, 156, 188, 28, 132,
160, 14, 110, 134, 0, 86, 107, 0, 59, 76, 0, 20, 34, 80, 200, 217, 70, 176,
192, 60, 154, 168, 47, 131, 143, 34, 109, 119, 16, 85, 94, 0, 58, 66, 0, 20,
27, 95, 198, 194, 84, 175, 171, 71, 153, 150, 57, 130, 127, 42, 108, 106,
25, 84, 83, 0, 58, 57, 0, 20, 19, 107, 196, 169, 93, 173, 149, 79, 151, 130,
64, 128, 110, 49, 106, 91, 32, 84, 71, 3, 57, 47, 0, 19, 10, 115, 195, 145,
100, 171, 128, 86, 150, 112, 69, 127, 94, 53, 105, 78, 36, 83, 59, 8, 57,
37, 0, 19, 1, 122, 193, 120, 107, 170, 106, 91, 149, 92, 74, 126, 77, 57,
104, 62, 39, 82, 46, 13, 56, 26, 0, 18, 0, 128, 192, 93, 112, 169, 81, 95,
148, 70, 77, 125, 58, 60, 104, 46, 42, 81, 31, 15, 56, 13, 0, 17, 0, 132,
191, 69, 115, 168, 60, 98, 147, 51, 79, 124, 41, 62, 103, 30, 43, 81, 17,
16, 56, 0, 0, 17, 0, 77, 180, 227, 69, 159, 200, 60, 139, 176, 48, 118, 150,
35, 97, 125, 20, 75, 99, 0, 50, 70, 0, 9, 29, 96, 178, 203, 85, 158, 179,
73, 138, 157, 59, 117, 133, 45, 96, 111, 29, 75, 87, 3, 50, 60, 0, 9, 21,
107, 177, 181, 94, 156, 160, 80, 137, 140, 65, 116, 119, 51, 96, 98, 34, 74,
77, 9, 49, 52, 0, 8, 14, 115, 175, 158, 101, 155, 140, 86, 135, 122, 71,
114, 103, 55, 95, 85, 38, 73, 65, 14, 49, 42, 0, 7, 4, 121, 174, 137, 106,
153, 120, 91, 134, 105, 74, 113, 88, 58, 94, 72, 41, 73, 54, 17, 49, 33, 0,
6, 0, 127, 173, 114, 111, 152, 100, 95, 133, 86, 78, 112, 72, 61, 93, 58,
43, 72, 42, 19, 48, 22, 0, 6, 0, 132, 172, 88, 115, 151, 77, 98, 132, 66,
80, 112, 54, 63, 92, 42, 45, 72, 28, 20, 48, 9, 0, 5, 0, 135, 171, 67, 118,
151, 57, 100, 131, 49, 82, 111, 39, 65, 92, 28, 46, 71, 13, 21, 48, 0, 0, 5,
0, 93, 159, 211, 83, 141, 187, 72, 123, 164, 59, 104, 140, 46, 85, 116, 31,
65, 92, 8, 41, 64, 0, 1, 23, 106, 158, 189, 94, 140, 167, 81, 122, 147, 67,
103, 124, 52, 85, 103, 36, 65, 81, 14, 41, 55, 0, 0, 15, 114, 157, 169, 100,
139, 150, 87, 121, 131, 71, 102, 111, 56, 84, 92, 40, 64, 71, 17, 41, 47, 0,
0, 7, 121, 156, 148, 106, 138, 131, 91, 120, 114, 75, 101, 96, 60, 83, 79,
43, 64, 60, 20, 40, 37, 0, 0, 1, 126, 155, 129, 110, 136, 113, 95, 119, 98,
78, 101, 82, 62, 83, 67, 45, 63, 50, 22, 40, 28, 0, 0, 0, 130, 154, 107,
114, 135, 94, 98, 118, 81, 81, 100, 67, 64, 82, 54, 46, 63, 38, 23, 40, 18,
0, 0, 0, 134, 153, 84, 117, 135, 73, 101, 117, 62, 83, 99, 51, 66, 81, 39,
48, 62, 24, 24, 40, 5, 0, 0, 0, 137, 152, 65, 119, 134, 55, 102, 117, 46,
84, 99, 36, 67, 81, 25, 48, 62, 11, 24, 40, 0, 0, 0, 0, 105, 138, 196, 93,
122, 173, 81, 106, 152, 67, 89, 129, 53, 72, 107, 38, 54, 84, 17, 30, 58, 0,
0, 17, 115, 137, 175, 101, 121, 155, 88, 106, 136, 73, 89, 115, 58, 72, 95,
42, 54, 74, 21, 31, 49, 0, 0, 8, 120, 136, 157, 106, 120, 139, 92, 105, 121,
76, 88, 103, 61, 71, 84, 44, 53, 65, 23, 31, 41, 0, 0, 1, 125, 135, 138,
110, 119, 122, 95, 104, 106, 79, 87, 89, 63, 71, 73, 46, 53, 55, 25, 31, 33,
0, 0, 0, 129, 134, 120, 113, 119, 105, 98, 103, 91, 81, 87, 76, 65, 71, 61,
48, 53, 45, 26, 31, 24, 0, 0, 0, 133, 134, 101, 116, 118, 88, 100, 103, 76,
83, 86, 62, 67, 70, 49, 49, 53, 34, 27, 31, 14, 0, 0, 0, 136, 133, 80, 119,
117, 69, 102, 102, 58, 85, 86, 47, 68, 70, 35, 50, 52, 20, 27, 31, 3, 0, 0,
0, 138, 133, 62, 121, 117, 52, 104, 102, 43, 86, 85, 33, 69, 69, 22, 50, 52,
7, 27, 31, 0, 0, 0, 0, 114, 118, 182, 100, 104, 161, 87, 90, 141, 73, 75,
120, 59, 59, 99, 43, 42, 78, 22, 20, 52, 0, 0, 10, 121, 117, 163, 106, 104,
144, 92, 90, 126, 77, 75, 107, 62, 59, 88, 46, 42, 68, 24, 21, 44, 0, 0, 2,
125, 117, 146, 110, 103, 129, 95, 89, 113, 79, 74, 95, 64, 59, 78, 47, 42,
59, 26, 21, 36, 0, 0, 0, 129, 116, 129, 113, 102, 113, 98, 89, 99, 82, 74,
83, 66, 59, 67, 49, 42, 50, 27, 22, 28, 0, 0, 0, 132, 116, 112, 116, 102,
98, 100, 88, 85, 83, 73, 71, 67, 59, 57, 50, 43, 41, 28, 22, 20, 0, 0, 0,
134, 115, 95, 118, 101, 82, 102, 88, 71, 85, 73, 58, 68, 59, 45, 51, 43, 30,
29, 22, 11, 0, 0, 0, 137, 115, 76, 120, 101, 65, 104, 87, 55, 86, 73, 44,
69, 58, 32, 51, 42, 18, 29, 22, 1, 0, 0, 0, 139, 114, 60, 122, 100, 50, 105,
87, 41, 87, 72, 31, 70, 58, 19, 51, 42, 4, 29, 22, 0, 0, 0, 0, 120, 97, 168,
106, 85, 149, 92, 73, 130, 77, 59, 110, 63, 45, 91, 47, 28, 71, 25, 6, 47,
0, 0, 3, 126, 97, 151, 111, 85, 133, 96, 73, 117, 80, 59, 98, 65, 46, 81,
48, 29, 62, 27, 7, 39, 0, 0, 0, 129, 97, 136, 113, 85, 120, 98, 73, 104, 82,
59, 88, 67, 46, 72, 50, 30, 54, 29, 8, 32, 0, 0, 0, 132, 96, 120, 116, 84,
105, 100, 72, 91, 84, 59, 76, 68, 46, 61, 51, 30, 45, 29, 9, 24, 0, 0, 0,
134, 96, 105, 117, 84, 92, 102, 72, 79, 85, 59, 65, 69, 46, 52, 51, 30, 36,
30, 10, 16, 0, 0, 0, 136, 96, 89, 119, 84, 77, 103, 72, 66, 86, 59, 53, 69,
46, 41, 52, 31, 26, 30, 11, 7, 0, 0, 0, 138, 95, 71, 121, 83, 61, 105, 72,
51, 87, 59, 40, 70, 46, 28, 52, 31, 14, 30, 11, 0, 0, 0, 0, 139, 95, 57,
122, 83, 47, 106, 71, 38, 88, 59, 28, 71, 46, 17, 52, 31, 2, 29, 12, 0, 0,
0, 0, 125, 74, 155, 110, 63, 137, 96, 52, 120, 81, 40, 101, 66, 27, 83, 49,
7, 64, 27, 0, 41, 0, 0, 0, 129, 73, 139, 114, 63, 123, 99, 53, 107, 83, 41,
90, 68, 28, 74, 51, 10, 56, 29, 0, 33, 0, 0, 0, 132, 74, 125, 116, 63, 110,
101, 53, 96, 84, 41, 80, 69, 29, 65, 51, 12, 48, 30, 0, 27, 0, 0, 0, 134,
74, 111, 118, 64, 97, 102, 53, 84, 85, 42, 70, 69, 29, 56, 52, 13, 40, 30,
0, 19, 0, 0, 0, 136, 74, 97, 119, 64, 85, 103, 53, 73, 86, 42, 60, 70, 30,
47, 52, 14, 31, 30, 0, 12, 0, 0, 0, 137, 74, 83, 121, 64, 71, 104, 54, 61,
87, 42, 49, 71, 30, 36, 53, 15, 22, 30, 0, 5, 0, 0, 0, 139, 74, 67, 122, 64,
57, 105, 54, 47, 88, 42, 36, 71, 31, 25, 53, 16, 9, 30, 0, 0, 0, 0, 0, 140,
73, 54, 123, 64, 45, 106, 54, 36, 88, 43, 26, 71, 31, 14, 53, 17, 1, 29, 0,
0, 0, 0, 0, 129, 44, 143, 114, 34, 126, 99, 24, 110, 84, 9, 92, 68, 0, 76,
51, 0, 58, 28, 0, 35, 0, 0, 0, 132, 44, 128, 117, 35, 113, 102, 25, 98, 85,
12, 82, 69, 0, 67, 52, 0, 50, 29, 0, 28, 0, 0, 0, 134, 45, 116, 118, 36,
102, 103, 27, 88, 86, 14, 73, 70, 0, 59, 52, 0, 43, 29, 0, 22, 0, 0, 0, 136,
46, 103, 119, 37, 90, 103, 28, 77, 87, 17, 64, 71, 1, 50, 53, 0, 35, 30, 0,
15, 0, 0, 0, 137, 47, 90, 120, 38, 78, 104, 29, 67, 87, 18, 54, 71, 3, 42,
53, 0, 27, 29, 0, 8, 0, 0, 0, 138, 47, 77, 121, 39, 66, 105, 30, 56, 88, 19,
44, 71, 5, 32, 53, 0, 18, 29, 0, 2, 0, 0, 0, 139, 48, 63, 122, 39, 53, 106,
31, 44, 88, 20, 33, 71, 7, 21, 53, 0, 6, 28, 0, 0, 0, 0, 0, 140, 48, 52,
123, 40, 42, 107, 31, 33, 89, 21, 23, 72, 8, 10, 53, 0, 0, 27, 0, 0, 0, 0,
0, 0, 192, 242, 0, 169, 213, 0, 148, 187, 0, 125, 159, 0, 104, 133, 0, 82,
106, 0, 56, 76, 0, 18, 34, 0, 189, 216, 0, 167, 190, 0, 147, 167, 0, 124,
142, 0, 103, 119, 0, 81, 94, 0, 55, 66, 0, 16, 27, 0, 188, 193, 0, 166, 170,
0, 145, 149, 0, 123, 127, 0, 102, 105, 0, 80, 83, 0, 55, 57, 0, 15, 20, 32,
186, 168, 27, 164, 149, 17, 144, 130, 0, 122, 110, 0, 101, 91, 0, 79, 71, 0,
55, 47, 0, 14, 11, 56, 184, 146, 47, 163, 129, 37, 142, 113, 23, 121, 95, 5,
100, 78, 0, 79, 60, 0, 54, 38, 0, 14, 2, 70, 183, 122, 60, 161, 107, 49,
141, 94, 35, 120, 79, 20, 100, 64, 0, 78, 48, 0, 54, 27, 0, 13, 0, 80, 182,
96, 69, 160, 84, 57, 140, 73, 43, 119, 61, 28, 99, 48, 6, 78, 34, 0, 53, 15,
0, 13, 0, 87, 181, 74, 75, 160, 65, 62, 140, 56, 47, 119, 46, 32, 98, 35,
12, 77, 21, 0, 53, 2, 0, 13, 0, 0, 171, 225, 0, 151, 199, 0, 132, 174, 0,
112, 149, 0, 92, 124, 0, 71, 98, 0, 47, 69, 0, 4, 29, 0, 169, 201, 0, 150,
178, 0, 131, 156, 0, 111, 133, 0, 92, 111, 0, 71, 87, 0, 47, 60, 0, 3, 22,
41, 168, 180, 36, 148, 159, 28, 130, 140, 15, 110, 118, 0, 91, 98, 0, 70,
77, 0, 46, 52, 0, 2, 14, 61, 166, 158, 53, 147, 139, 43, 129, 122, 31, 109,
103, 17, 90, 85, 0, 70, 66, 0, 46, 43, 0, 2, 5, 73, 165, 137, 64, 146, 121,
53, 128, 106, 40, 108, 89, 26, 89, 73, 6, 69, 55, 0, 46, 33, 0, 1, 0, 83,
164, 115, 72, 145, 101, 60, 127, 88, 46, 107, 73, 32, 89, 59, 14, 69, 43, 0,
46, 23, 0, 1, 0, 90, 163, 91, 78, 144, 80, 65, 126, 69, 51, 106, 57, 37, 88,
44, 19, 68, 30, 0, 45, 11, 0, 1, 0, 95, 163, 72, 82, 143, 62, 69, 125, 53,
54, 106, 43, 39, 88, 32, 22, 68, 18, 0, 45, 0, 0, 1, 0, 0, 152, 210, 0, 134,
186, 0, 117, 163, 0, 99, 139, 0, 81, 116, 0, 62, 92, 0, 38, 64, 0, 1, 24,
47, 151, 188, 42, 133, 167, 35, 117, 146, 24, 98, 124, 10, 81, 103, 0, 61,
81, 0, 38, 55, 0, 0, 16, 65, 150, 169, 57, 132, 149, 47, 116, 131, 36, 98,
111, 23, 80, 92, 4, 61, 71, 0, 38, 47, 0, 0, 7, 76, 148, 148, 67, 131, 131,
56, 115, 114, 44, 97, 96, 31, 79, 79, 14, 61, 61, 0, 38, 38, 0, 0, 1, 84,
147, 129, 74, 130, 114, 62, 114, 99, 49, 96, 83, 35, 79, 68, 19, 60, 50, 0,
37, 29, 0, 0, 0, 91, 146, 109, 80, 129, 95, 67, 113, 83, 53, 95, 69, 39, 78,
55, 23, 60, 39, 1, 37, 20, 0, 0, 0, 97, 146, 87, 84, 128, 76, 71, 112, 65,
57, 95, 53, 42, 78, 41, 26, 60, 26, 4, 37, 7, 0, 0, 0, 101, 145, 69, 88,
128, 59, 74, 112, 50, 59, 94, 40, 44, 77, 29, 27, 59, 15, 4, 37, 0, 0, 0, 0,
52, 132, 195, 47, 117, 172, 40, 102, 151, 30, 85, 129, 19, 69, 107, 2, 51,
84, 0, 28, 58, 0, 0, 18, 70, 131, 175, 61, 116, 155, 52, 101, 135, 41, 85,
115, 29, 68, 95, 13, 51, 74, 0, 28, 49, 0, 0, 9, 80, 130, 157, 70, 115, 139,
59, 100, 121, 47, 84, 103, 35, 68, 85, 19, 51, 65, 0, 28, 42, 0, 0, 1, 87,
130, 138, 76, 114, 122, 65, 100, 106, 52, 84, 89, 39, 68, 73, 24, 50, 55, 4,
28, 33, 0, 0, 0, 93, 129, 121, 81, 114, 106, 69, 99, 92, 56, 83, 77, 42, 67,
62, 27, 50, 46, 7, 29, 25, 0, 0, 0, 98, 128, 102, 86, 113, 89, 73, 98, 77,
59, 82, 64, 45, 67, 50, 29, 50, 35, 9, 29, 16, 0, 0, 0, 102, 127, 82, 89,
112, 71, 76, 98, 61, 61, 82, 49, 47, 66, 37, 31, 50, 23, 11, 29, 4, 0, 0, 0,
105, 127, 66, 92, 112, 56, 78, 97, 47, 63, 82, 37, 48, 66, 25, 32, 50, 11,
10, 29, 0, 0, 0, 0, 72, 114, 181, 63, 100, 160, 54, 87, 140, 44, 72, 119,
32, 57, 99, 18, 39, 78, 0, 18, 52, 0, 0, 11, 83, 113, 163, 73, 100, 144, 62,
86, 126, 50, 71, 107, 38, 57, 88, 24, 40, 68, 3, 19, 44, 0, 0, 3, 89, 113,
147, 78, 99, 129, 67, 86, 113, 55, 71, 95, 42, 57, 78, 27, 40, 60, 8, 19,
37, 0, 0, 0, 95, 112, 129, 83, 98, 114, 71, 85, 99, 58, 71, 83, 45, 56, 67,
30, 40, 50, 11, 20, 29, 0, 0, 0, 99, 111, 113, 86, 98, 99, 74, 85, 86, 60,
70, 72, 47, 56, 57, 31, 40, 41, 12, 20, 21, 0, 0, 0, 103, 111, 96, 90, 97,
84, 77, 84, 72, 63, 70, 59, 49, 56, 46, 33, 40, 31, 13, 21, 12, 0, 0, 0,
106, 110, 78, 93, 97, 67, 79, 84, 57, 64, 70, 46, 50, 56, 34, 34, 40, 19,
13, 21, 2, 0, 0, 0, 108, 110, 63, 95, 97, 53, 81, 84, 44, 66, 69, 34, 51,
56, 22, 35, 40, 7, 13, 21, 0, 0, 0, 0, 85, 94, 168, 74, 82, 149, 64, 70,
130, 53, 57, 110, 41, 43, 91, 27, 26, 71, 5, 5, 47, 0, 0, 4, 92, 94, 151,
81, 82, 134, 70, 70, 117, 57, 57, 99, 45, 44, 81, 30, 27, 62, 10, 7, 39, 0,
0, 0, 97, 94, 136, 85, 82, 120, 73, 70, 105, 60, 57, 88, 47, 44, 72, 32, 28,
54, 13, 8, 32, 0, 0, 0, 101, 94, 121, 88, 82, 106, 76, 70, 92, 62, 57, 77,
49, 44, 62, 34, 28, 45, 14, 9, 25, 0, 0, 0, 104, 93, 106, 91, 81, 93, 78,
70, 80, 64, 57, 66, 50, 44, 52, 35, 29, 37, 14, 10, 17, 0, 0, 0, 106, 93,
90, 93, 81, 78, 80, 69, 67, 66, 57, 55, 52, 44, 42, 36, 29, 27, 15, 11, 8,
0, 0, 0, 109, 92, 74, 96, 81, 63, 82, 69, 53, 67, 57, 42, 53, 44, 30, 36,
29, 16, 15, 11, 1, 0, 0, 0, 111, 92, 60, 97, 80, 50, 83, 69, 41, 68, 57, 31,
53, 44, 20, 37, 30, 5, 15, 11, 0, 0, 0, 0, 94, 73, 155, 82, 63, 137, 72, 52,
120, 59, 40, 102, 47, 26, 84, 32, 8, 65, 9, 0, 42, 0, 0, 0, 99, 73, 140, 87,
63, 124, 76, 52, 108, 62, 40, 91, 49, 27, 75, 34, 11, 57, 12, 0, 34, 0, 0,
0, 103, 73, 126, 90, 63, 111, 78, 53, 97, 64, 41, 81, 51, 28, 66, 35, 13,
49, 13, 0, 27, 0, 0, 0, 105, 73, 112, 92, 63, 98, 80, 53, 85, 66, 41, 71,
52, 29, 57, 36, 14, 41, 15, 0, 20, 0, 0, 0, 107, 73, 99, 94, 63, 86, 81, 53,
74, 67, 41, 61, 53, 29, 48, 37, 15, 32, 16, 0, 13, 0, 0, 0, 110, 73, 85, 96,
63, 73, 83, 53, 62, 68, 42, 50, 54, 30, 38, 38, 16, 23, 16, 1, 5, 0, 0, 0,
112, 73, 69, 98, 63, 59, 84, 53, 49, 69, 42, 38, 55, 30, 27, 38, 16, 12, 17,
1, 0, 0, 0, 0, 113, 73, 57, 99, 63, 47, 85, 53, 38, 70, 42, 28, 55, 30, 17,
38, 17, 3, 16, 2, 0, 0, 0, 0, 101, 47, 144, 88, 38, 127, 77, 27, 111, 64,
14, 94, 51, 0, 77, 35, 0, 59, 9, 0, 36, 0, 0, 0, 105, 47, 129, 92, 38, 114,
80, 28, 99, 66, 16, 83, 53, 0, 68, 37, 0, 51, 13, 0, 29, 0, 0, 0, 107, 48,
117, 94, 39, 103, 81, 29, 89, 67, 18, 74, 54, 2, 60, 38, 0, 44, 15, 0, 23,
0, 0, 0, 109, 49, 104, 95, 40, 91, 82, 31, 79, 68, 19, 65, 54, 5, 51, 39, 0,
36, 17, 0, 16, 0, 0, 0, 110, 50, 92, 97, 40, 80, 84, 31, 68, 69, 20, 56, 55,
7, 43, 39, 0, 28, 17, 0, 9, 0, 0, 0, 112, 50, 79, 98, 41, 68, 85, 32, 57,
70, 21, 46, 56, 8, 34, 40, 0, 20, 18, 0, 3, 0, 0, 0, 113, 50, 65, 100, 41,
55, 86, 33, 46, 71, 22, 35, 56, 10, 23, 40, 0, 8, 17, 0, 0, 0, 0, 0, 115,
50, 54, 101, 41, 44, 87, 33, 36, 71, 23, 25, 56, 11, 14, 40, 0, 1, 16, 0, 0,
0, 0, 0, 0, 182, 240, 0, 161, 212, 0, 141, 185, 0, 120, 158, 0, 99, 132, 0,
78, 106, 0, 53, 75, 0, 12, 35, 0, 180, 214, 0, 159, 189, 0, 140, 166, 0,
119, 141, 0, 99, 118, 0, 77, 94, 0, 53, 66, 0, 11, 28, 0, 179, 192, 0, 158,
169, 0, 138, 149, 0, 118, 126, 0, 98, 105, 0, 77, 83, 0, 52, 57, 0, 10, 21,
0, 177, 168, 0, 156, 149, 0, 137, 130, 0, 116, 110, 0, 97, 91, 0, 76, 71, 0,
52, 48, 0, 9, 12, 0, 175, 146, 0, 155, 129, 0, 136, 113, 0, 115, 96, 0, 96,
79, 0, 75, 60, 0, 51, 39, 0, 9, 3, 0, 174, 123, 0, 154, 109, 0, 135, 95, 0,
115, 80, 0, 95, 65, 0, 75, 49, 0, 51, 28, 0, 8, 0, 0, 173, 98, 0, 153, 87,
0, 134, 76, 0, 114, 63, 0, 95, 50, 0, 74, 35, 0, 51, 17, 0, 8, 0, 0, 172,
78, 0, 152, 70, 0, 134, 60, 0, 114, 49, 0, 94, 38, 0, 74, 24, 0, 51, 5, 0,
8, 0, 0, 163, 224, 0, 144, 198, 0, 126, 173, 0, 107, 148, 0, 88, 123, 0, 68,
98, 0, 44, 69, 0, 1, 29, 0, 162, 200, 0, 143, 177, 0, 125, 155, 0, 106, 132,
0, 88, 110, 0, 68, 87, 0, 44, 60, 0, 1, 22, 0, 160, 180, 0, 142, 159, 0,
124, 139, 0, 105, 118, 0, 87, 98, 0, 67, 77, 0, 44, 52, 0, 0, 15, 0, 159,
158, 0, 140, 139, 0, 123, 122, 0, 104, 103, 0, 86, 85, 0, 67, 66, 0, 43, 43,
0, 0, 5, 0, 157, 138, 0, 139, 121, 0, 122, 106, 0, 103, 89, 0, 85, 73, 0,
66, 56, 0, 43, 34, 0, 0, 0, 0, 156, 116, 0, 138, 102, 0, 121, 89, 0, 103,
75, 0, 85, 60, 0, 66, 44, 0, 43, 24, 0, 0, 0, 6, 155, 94, 2, 137, 82, 0,
120, 71, 0, 102, 59, 0, 84, 46, 0, 65, 32, 0, 43, 13, 0, 0, 0, 30, 155, 75,
23, 137, 66, 11, 120, 57, 0, 102, 46, 0, 84, 35, 0, 65, 20, 0, 43, 2, 0, 0,
0, 0, 145, 209, 0, 129, 185, 0, 112, 162, 0, 95, 138, 0, 77, 115, 0, 59, 91,
0, 35, 64, 0, 1, 24, 0, 144, 188, 0, 128, 166, 0, 112, 145, 0, 94, 124, 0,
77, 103, 0, 58, 81, 0, 35, 55, 0, 0, 16, 0, 143, 168, 0, 127, 149, 0, 111,
130, 0, 93, 111, 0, 77, 92, 0, 58, 71, 0, 35, 47, 0, 0, 8, 0, 142, 148, 0,
126, 131, 0, 110, 114, 0, 93, 97, 0, 76, 79, 0, 58, 61, 0, 35, 38, 0, 0, 1,
0, 141, 130, 0, 125, 114, 0, 109, 100, 0, 92, 84, 0, 75, 68, 0, 58, 51, 0,
35, 30, 0, 0, 0, 27, 140, 110, 22, 124, 97, 12, 108, 84, 0, 91, 70, 0, 75,
56, 0, 57, 40, 0, 35, 21, 0, 0, 0, 43, 139, 89, 36, 123, 78, 26, 108, 67,
12, 91, 55, 0, 74, 43, 0, 57, 28, 0, 35, 9, 0, 0, 0, 51, 139, 72, 43, 123,
63, 33, 107, 53, 20, 90, 43, 3, 74, 31, 0, 57, 18, 0, 35, 1, 0, 0, 0, 0,
127, 194, 0, 112, 172, 0, 98, 151, 0, 81, 128, 0, 66, 107, 0, 48, 84, 0, 26,
58, 0, 0, 18, 0, 126, 174, 0, 111, 154, 0, 97, 135, 0, 81, 115, 0, 65, 95,
0, 48, 74, 0, 26, 50, 0, 0, 9, 0, 125, 157, 0, 111, 139, 0, 96, 121, 0, 81,
103, 0, 65, 85, 0, 48, 65, 0, 27, 42, 0, 0, 2, 20, 125, 139, 17, 110, 122,
9, 96, 107, 0, 80, 90, 0, 65, 73, 0, 48, 56, 0, 27, 34, 0, 0, 0, 39, 124,
122, 33, 109, 107, 25, 95, 93, 13, 80, 78, 0, 65, 63, 0, 48, 46, 0, 27, 26,
0, 0, 0, 51, 123, 103, 43, 108, 90, 34, 94, 78, 23, 79, 65, 8, 64, 51, 0,
48, 36, 0, 27, 17, 0, 0, 0, 59, 122, 84, 51, 108, 73, 41, 94, 63, 29, 79,
51, 15, 64, 39, 0, 47, 24, 0, 27, 6, 0, 0, 0, 64, 122, 69, 55, 107, 59, 45,
94, 50, 32, 78, 39, 19, 64, 28, 0, 47, 14, 0, 27, 0, 0, 0, 0, 0, 110, 181,
0, 97, 160, 0, 83, 140, 0, 69, 119, 0, 54, 99, 0, 37, 78, 0, 16, 53, 0, 0,
12, 7, 109, 163, 8, 96, 144, 3, 83, 126, 0, 69, 107, 0, 54, 88, 0, 38, 68,
0, 17, 45, 0, 0, 3, 34, 109, 147, 30, 96, 129, 23, 83, 113, 13, 69, 95, 0,
54, 78, 0, 38, 60, 0, 18, 37, 0, 0, 0, 48, 108, 130, 41, 95, 114, 33, 82,
99, 23, 68, 84, 10, 54, 68, 0, 38, 51, 0, 18, 29, 0, 0, 0, 56, 108, 114, 49,
94, 100, 40, 82, 87, 29, 68, 72, 16, 54, 58, 0, 38, 42, 0, 18, 22, 0, 0, 0,
63, 107, 97, 55, 94, 85, 45, 81, 73, 34, 68, 60, 21, 54, 47, 5, 38, 32, 0,
18, 13, 0, 0, 0, 68, 106, 80, 59, 93, 69, 49, 81, 59, 37, 67, 47, 25, 54,
35, 9, 38, 21, 0, 18, 4, 0, 0, 0, 72, 106, 66, 63, 93, 56, 52, 81, 47, 40,
67, 36, 27, 53, 25, 11, 38, 11, 0, 18, 0, 0, 0, 0, 28, 92, 168, 24, 80, 149,
19, 68, 130, 11, 55, 111, 0, 41, 92, 0, 25, 71, 0, 6, 47, 0, 0, 5, 46, 92,
151, 40, 80, 134, 33, 68, 117, 24, 55, 99, 12, 42, 81, 0, 26, 63, 0, 7, 40,
0, 0, 0, 55, 91, 137, 48, 80, 121, 40, 68, 105, 30, 55, 89, 18, 42, 72, 2,
27, 55, 0, 8, 32, 0, 0, 0, 62, 91, 121, 54, 79, 107, 45, 68, 93, 34, 55, 77,
23, 42, 62, 7, 27, 46, 0, 8, 25, 0, 0, 0, 67, 91, 107, 58, 79, 93, 49, 68,
81, 38, 55, 67, 26, 42, 53, 12, 27, 37, 0, 8, 18, 0, 0, 0, 72, 90, 91, 62,
79, 79, 52, 67, 68, 41, 55, 56, 29, 42, 43, 15, 28, 28, 1, 9, 9, 0, 0, 0,
76, 90, 75, 66, 78, 65, 56, 67, 55, 43, 55, 44, 31, 42, 32, 17, 28, 18, 2,
9, 2, 0, 0, 0, 78, 90, 62, 68, 78, 52, 58, 67, 43, 45, 55, 33, 32, 42, 22,
19, 28, 7, 2, 9, 0, 0, 0, 0, 53, 72, 156, 46, 62, 138, 39, 51, 121, 30, 39,
102, 20, 25, 84, 2, 9, 65, 0, 0, 42, 0, 0, 0, 62, 72, 140, 55, 62, 124, 46,
52, 108, 36, 40, 91, 25, 27, 75, 9, 11, 57, 0, 0, 34, 0, 0, 0, 68, 72, 127,
59, 62, 112, 50, 52, 97, 39, 40, 82, 28, 27, 66, 13, 12, 49, 0, 0, 28, 0, 0,
0, 72, 73, 113, 63, 62, 99, 53, 52, 86, 42, 40, 71, 30, 28, 57, 17, 13, 41,
0, 0, 21, 0, 0, 0, 76, 72, 100, 66, 62, 87, 56, 52, 75, 44, 41, 62, 32, 29,
48, 19, 14, 33, 3, 0, 13, 0, 0, 0, 79, 72, 86, 69, 62, 74, 58, 52, 63, 46,
41, 51, 34, 29, 39, 21, 15, 24, 4, 1, 6, 0, 0, 0, 81, 72, 71, 71, 62, 61,
60, 52, 51, 48, 41, 40, 35, 29, 28, 22, 15, 13, 5, 1, 0, 0, 0, 0, 83, 72,
59, 73, 62, 49, 62, 52, 41, 49, 41, 31, 36, 30, 20, 22, 16, 5, 4, 2, 0, 0,
0, 0, 67, 49, 144, 59, 40, 128, 50, 30, 112, 40, 18, 95, 29, 2, 78, 13, 0,
60, 0, 0, 37, 0, 0, 0, 73, 50, 130, 64, 40, 115, 55, 31, 100, 44, 19, 84,
32, 4, 69, 18, 0, 52, 0, 0, 30, 0, 0, 0, 76, 50, 118, 67, 41, 104, 57, 32,
90, 46, 20, 75, 34, 7, 61, 20, 0, 45, 0, 0, 24, 0, 0, 0, 79, 51, 105, 69,
42, 92, 59, 33, 80, 47, 21, 66, 35, 9, 52, 22, 0, 37, 1, 0, 16, 0, 0, 0, 81,
52, 93, 71, 42, 81, 61, 33, 70, 49, 22, 57, 36, 11, 44, 23, 0, 29, 2, 0, 9,
0, 0, 0, 83, 52, 80, 73, 43, 69, 62, 34, 59, 50, 23, 47, 37, 12, 35, 23, 0,
21, 3, 0, 3, 0, 0, 0, 85, 52, 67, 75, 43, 57, 64, 34, 47, 51, 24, 36, 38,
13, 25, 24, 0, 10, 3, 0, 0, 0, 0, 0, 87, 52, 56, 76, 43, 46, 65, 34, 37, 52,
24, 27, 39, 14, 16, 24, 0, 2, 2, 0, 0, 0, 0, 0, 0, 174, 238, 0, 154, 210, 0,
135, 184, 0, 115, 157, 0, 95, 132, 0, 75, 105, 0, 50, 75, 0, 6, 35, 0, 172,
213, 0, 153, 188, 0, 134, 165, 0, 114, 141, 0, 94, 118, 0, 74, 93, 0, 50,
66, 0, 5, 28, 0, 171, 191, 0, 151, 169, 0, 133, 148, 0, 113, 126, 0, 94,
105, 0, 73, 83, 0, 50, 57, 0, 5, 21, 0, 169, 168, 0, 150, 148, 0, 131, 130,
0, 112, 110, 0, 93, 92, 0, 73, 71, 0, 49, 48, 0, 5, 13, 0, 167, 146, 0, 148,
130, 0, 130, 113, 0, 111, 96, 0, 92, 79, 0, 72, 61, 0, 49, 39, 0, 4, 3, 0,
166, 124, 0, 147, 110, 0, 129, 96, 0, 110, 81, 0, 92, 66, 0, 72, 49, 0, 49,
29, 0, 4, 0, 0, 165, 100, 0, 146, 89, 0, 129, 78, 0, 110, 65, 0, 91, 52, 0,
72, 37, 0, 49, 18, 0, 4, 0, 0, 164, 82, 0, 146, 73, 0, 128, 64, 0, 109, 52,
0, 91, 41, 0, 72, 26, 0, 49, 8, 0, 4, 0, 0, 157, 223, 0, 138, 197, 0, 121,
172, 0, 102, 147, 0, 84, 123, 0, 65, 98, 0, 41, 69, 0, 1, 30, 0, 155, 199,
0, 137, 176, 0, 120, 155, 0, 102, 132, 0, 84, 110, 0, 65, 87, 0, 41, 60, 0,
1, 22, 0, 154, 179, 0, 136, 158, 0, 119, 139, 0, 101, 118, 0, 83, 98, 0, 64,
77, 0, 41, 52, 0, 0, 15, 0, 152, 158, 0, 135, 139, 0, 118, 122, 0, 100, 103,
0, 83, 85, 0, 64, 66, 0, 41, 43, 0, 0, 6, 0, 151, 138, 0, 133, 122, 0, 117,
106, 0, 99, 90, 0, 82, 74, 0, 64, 56, 0, 41, 35, 0, 0, 0, 0, 150, 117, 0,
133, 103, 0, 116, 90, 0, 99, 76, 0, 82, 61, 0, 63, 45, 0, 41, 25, 0, 0, 0,
0, 149, 95, 0, 132, 84, 0, 116, 73, 0, 98, 61, 0, 81, 48, 0, 63, 33, 0, 41,
15, 0, 0, 0, 0, 148, 78, 0, 131, 69, 0, 115, 59, 0, 98, 49, 0, 81, 37, 0,
63, 23, 0, 40, 4, 0, 0, 0, 0, 140, 208, 0, 124, 184, 0, 108, 161, 0, 91,
137, 0, 74, 115, 0, 56, 91, 0, 33, 64, 0, 1, 24, 0, 139, 187, 0, 123, 165,
0, 107, 145, 0, 90, 123, 0, 74, 102, 0, 56, 80, 0, 33, 55, 0, 0, 17, 0, 138,
168, 0, 122, 149, 0, 106, 130, 0, 90, 110, 0, 73, 91, 0, 56, 71, 0, 33, 47,
0, 0, 8, 0, 136, 148, 0, 121, 131, 0, 105, 115, 0, 89, 97, 0, 73, 80, 0, 55,
61, 0, 33, 39, 0, 0, 1, 0, 135, 130, 0, 120, 115, 0, 105, 100, 0, 88, 84, 0,
72, 69, 0, 55, 52, 0, 33, 30, 0, 0, 0, 0, 135, 111, 0, 119, 98, 0, 104, 85,
0, 88, 71, 0, 72, 57, 0, 55, 41, 0, 33, 22, 0, 0, 0, 0, 134, 91, 0, 118, 80,
0, 103, 69, 0, 87, 57, 0, 72, 44, 0, 54, 30, 0, 33, 11, 0, 0, 0, 0, 133, 75,
0, 118, 65, 0, 103, 56, 0, 87, 45, 0, 71, 34, 0, 54, 20, 0, 33, 2, 0, 0, 0,
0, 123, 194, 0, 108, 171, 0, 94, 150, 0, 78, 128, 0, 63, 106, 0, 46, 84, 0,
24, 58, 0, 0, 19, 0, 122, 174, 0, 107, 154, 0, 93, 135, 0, 78, 114, 0, 63,
95, 0, 46, 74, 0, 25, 50, 0, 0, 10, 0, 121, 157, 0, 107, 139, 0, 93, 121, 0,
78, 103, 0, 63, 85, 0, 46, 65, 0, 25, 42, 0, 0, 2, 0, 120, 139, 0, 106, 122,
0, 92, 107, 0, 77, 90, 0, 62, 74, 0, 46, 56, 0, 25, 34, 0, 0, 0, 0, 119,
122, 0, 105, 107, 0, 91, 93, 0, 77, 78, 0, 62, 63, 0, 45, 47, 0, 25, 26, 0,
0, 0, 0, 119, 104, 0, 104, 91, 0, 91, 79, 0, 76, 66, 0, 62, 52, 0, 45, 37,
0, 25, 18, 0, 0, 0, 0, 118, 86, 0, 104, 75, 0, 90, 64, 0, 76, 52, 0, 61, 40,
0, 45, 26, 0, 25, 7, 0, 0, 0, 0, 118, 71, 0, 104, 61, 0, 90, 52, 0, 75, 42,
0, 61, 30, 0, 45, 17, 0, 24, 1, 0, 0, 0, 0, 107, 181, 0, 94, 160, 0, 81,
140, 0, 66, 119, 0, 52, 99, 0, 35, 78, 0, 15, 53, 0, 0, 13, 0, 106, 163, 0,
93, 144, 0, 80, 126, 0, 66, 107, 0, 52, 88, 0, 36, 68, 0, 15, 45, 0, 0, 4,
0, 106, 147, 0, 93, 130, 0, 80, 113, 0, 66, 96, 0, 52, 79, 0, 36, 60, 0, 16,
37, 0, 0, 0, 0, 105, 130, 0, 92, 115, 0, 79, 100, 0, 66, 84, 0, 52, 68, 0,
36, 51, 0, 16, 30, 0, 0, 0, 0, 104, 115, 0, 91, 101, 0, 79, 87, 0, 65, 73,
0, 52, 59, 0, 36, 43, 0, 16, 22, 0, 0, 0, 0, 104, 98, 0, 91, 86, 0, 79, 74,
0, 65, 61, 0, 52, 48, 0, 36, 33, 0, 16, 14, 0, 0, 0, 0, 103, 81, 0, 90, 70,
0, 78, 60, 0, 65, 49, 0, 52, 37, 0, 36, 22, 0, 16, 5, 0, 0, 0, 0, 103, 68,
0, 90, 58, 0, 78, 49, 0, 65, 38, 0, 51, 27, 0, 36, 13, 0, 16, 0, 0, 0, 0, 0,
90, 168, 0, 78, 149, 0, 67, 130, 0, 54, 111, 0, 40, 92, 0, 24, 72, 0, 6, 47,
0, 0, 6, 0, 90, 152, 0, 78, 134, 0, 67, 117, 0, 54, 99, 0, 40, 82, 0, 25,
63, 0, 6, 40, 0, 0, 0, 0, 89, 137, 0, 78, 121, 0, 66, 106, 0, 54, 89, 0, 41,
73, 0, 26, 55, 0, 7, 33, 0, 0, 0, 0, 89, 122, 0, 77, 107, 0, 66, 93, 0, 54,
78, 0, 41, 63, 0, 26, 46, 0, 7, 25, 0, 0, 0, 0, 89, 108, 0, 77, 94, 0, 66,
81, 0, 53, 68, 0, 41, 54, 0, 26, 38, 0, 8, 18, 0, 0, 0, 7, 88, 92, 4, 77,
80, 0, 66, 69, 0, 53, 57, 0, 41, 44, 0, 27, 29, 0, 8, 10, 0, 0, 0, 23, 88,
77, 19, 76, 66, 11, 65, 56, 0, 53, 45, 0, 41, 33, 0, 27, 19, 0, 8, 3, 0, 0,
0, 30, 88, 64, 26, 76, 54, 18, 65, 45, 4, 53, 35, 0, 41, 24, 0, 27, 9, 0, 8,
0, 0, 0, 0, 0, 72, 156, 0, 62, 138, 0, 51, 121, 0, 39, 103, 0, 26, 85, 0, 9,
66, 0, 0, 42, 0, 0, 0, 0, 72, 141, 0, 62, 125, 0, 51, 109, 0, 39, 92, 0, 27,
75, 0, 11, 57, 0, 0, 35, 0, 0, 0, 0, 72, 128, 0, 62, 113, 0, 51, 98, 0, 40,
82, 0, 27, 67, 0, 12, 50, 0, 1, 28, 0, 0, 0, 17, 72, 114, 13, 62, 100, 6,
51, 87, 0, 40, 72, 0, 28, 58, 0, 13, 42, 0, 1, 21, 0, 0, 0, 28, 72, 101, 23,
61, 88, 16, 51, 76, 4, 40, 62, 0, 28, 49, 0, 14, 34, 0, 1, 14, 0, 0, 0, 36,
72, 87, 30, 61, 75, 23, 51, 64, 12, 40, 52, 1, 28, 40, 0, 14, 25, 0, 1, 7,
0, 0, 0, 41, 71, 72, 35, 61, 62, 28, 51, 52, 17, 40, 41, 5, 28, 29, 0, 14,
15, 0, 0, 0, 0, 0, 0, 45, 71, 60, 39, 61, 51, 31, 51, 42, 20, 40, 32, 8, 29,
var
var
var
var
length = colorBuf.length / 4;
rgbBuf = new Uint8Array(length * 3);
rgbBufPos = 0;
colorBufPos = 0;
Adjust
= as >
= as <
= bs >
= bs <
limits of
this.amax
this.amin
this.bmax
this.bmin
as;
as;
bs;
bs;
rgbBuf[j++] = rgb[2];
}
return rgbBuf;
},
isDefaultDecode: function LabCS_isDefaultDecode(decodeMap) {
// From Table 90 in Adobe's:
// "Document management - Portable document format", 1st ed, 2008
if (decodeMap[0] === 0 && decodeMap[1] === 100 &&
decodeMap[2] === this.amin && decodeMap[3] === this.amax &&
decodeMap[4] === this.bmin && decodeMap[5] === this.bmax)
return true;
else
return false;
}
};
return LabCS;
})();
var ARCFourCipher = (function ARCFourCipherClosure() {
function ARCFourCipher(key) {
this.a = 0;
this.b = 0;
var s = new Uint8Array(256);
var i, j = 0, tmp, keyLength = key.length;
for (i = 0; i < 256; ++i)
s[i] = i;
for (i = 0; i < 256; ++i) {
tmp = s[i];
j = (j + tmp + key[i % keyLength]) & 0xFF;
s[i] = s[j];
s[j] = tmp;
}
this.s = s;
}
ARCFourCipher.prototype = {
encryptBlock: function ARCFourCipher_encryptBlock(data) {
var i, n = data.length, tmp, tmp2;
var a = this.a, b = this.b, s = this.s;
var output = new Uint8Array(n);
for (i = 0; i < n; ++i) {
a = (a + 1) & 0xFF;
tmp = s[a];
b = (b + tmp) & 0xFF;
tmp2 = s[b];
s[a] = tmp2;
s[b] = tmp;
output[i] = data[i] ^ s[(tmp + tmp2) & 0xFF];
}
this.a = a;
this.b = b;
return output;
}
};
ARCFourCipher.prototype.decryptBlock = ARCFourCipher.prototype.encryptBlock;
return ARCFourCipher;
})();
17, 22,
20,
16, 23,
15, 21]);
} else {
f = c ^ (b | (~d));
g = (7 * j) & 15;
}
var tmp = d, rotateArg = (a + f + k[j] + w[g]) | 0, rotate = r[j];
d = c;
c = b;
b = (b + ((rotateArg << rotate) | (rotateArg >>> (32 - rotate)))) | 0;
a = tmp;
}
h0
h1
h2
h3
=
=
=
=
}
return
h0
h1
h2
h3
]);
(h0
(h1
(h2
(h3
+
+
+
+
a)
b)
c)
d)
|
|
|
|
0;
0;
0;
0;
new Uint8Array([
& 0xFF, (h0 >> 8)
& 0xFF, (h1 >> 8)
& 0xFF, (h2 >> 8)
& 0xFF, (h3 >> 8)
&
&
&
&
0xFF,
0xFF,
0xFF,
0xFF,
(h0
(h1
(h2
(h3
>>
>>
>>
>>
16)
16)
16)
16)
&
&
&
&
0xFF,
0xFF,
0xFF,
0xFF,
(h0
(h1
(h2
(h3
>>>
>>>
>>>
>>>
24)
24)
24)
24)
&
&
&
&
0xFF,
0xFF,
0xFF,
0xFF
0x36,
0x35,
0xd3,
0x1d,
0x40,
0x63,
0x39,
0x66,
0x08,
0x2f,
0xef,
0x4a,
0x01,
0xab,
0xb3,
0xc2,
0xe8,
0x36,
0x35,
0xd3,
0x6c,
0x6a,
0xbd,
0x3a,
0x80,
0xc6,
0x72,
0xcc,
0x10,
0x5e,
0xc5,
0x94,
0x02,
0x4d,
0x7d,
0x9f,
0xcb,
0x6c,
0x6a,
0xbd,
}
return hash;
})();
var NullCipher = (function NullCipherClosure() {
function NullCipher() {
}
NullCipher.prototype = {
decryptBlock: function NullCipher_decryptBlock(data) {
return data;
}
};
return NullCipher;
})();
var AES128Cipher = (function AES128CipherClosure() {
var rcon = new Uint8Array([
0x8d, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
0xd8, 0xab, 0x4d, 0x9a, 0x2f, 0x5e, 0xbc, 0x63, 0xc6,
0xd4, 0xb3, 0x7d, 0xfa, 0xef, 0xc5, 0x91, 0x39, 0x72,
0x61, 0xc2, 0x9f, 0x25, 0x4a, 0x94, 0x33, 0x66, 0xcc,
0x74, 0xe8, 0xcb, 0x8d, 0x01, 0x02, 0x04, 0x08, 0x10,
0x1b, 0x36, 0x6c, 0xd8, 0xab, 0x4d, 0x9a, 0x2f, 0x5e,
0x97, 0x35, 0x6a, 0xd4, 0xb3, 0x7d, 0xfa, 0xef, 0xc5,
0xe4, 0xd3, 0xbd, 0x61, 0xc2, 0x9f, 0x25, 0x4a, 0x94,
0x83, 0x1d, 0x3a, 0x74, 0xe8, 0xcb, 0x8d, 0x01, 0x02,
0x20, 0x40, 0x80, 0x1b, 0x36, 0x6c, 0xd8, 0xab, 0x4d,
0xbc, 0x63, 0xc6, 0x97, 0x35, 0x6a, 0xd4, 0xb3, 0x7d,
0x91, 0x39, 0x72, 0xe4, 0xd3, 0xbd, 0x61, 0xc2, 0x9f,
0x33, 0x66, 0xcc, 0x83, 0x1d, 0x3a, 0x74, 0xe8, 0xcb,
0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36, 0x6c,
0x9a, 0x2f, 0x5e, 0xbc, 0x63, 0xc6, 0x97, 0x35, 0x6a,
0xfa, 0xef, 0xc5, 0x91, 0x39, 0x72, 0xe4, 0xd3, 0xbd,
0x25, 0x4a, 0x94, 0x33, 0x66, 0xcc, 0x83, 0x1d, 0x3a,
0x8d, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
0xd8, 0xab, 0x4d, 0x9a, 0x2f, 0x5e, 0xbc, 0x63, 0xc6,
0xd4, 0xb3, 0x7d, 0xfa, 0xef, 0xc5, 0x91, 0x39, 0x72,
0x1b,
0x97,
0xe4,
0x83,
0x20,
0xbc,
0x91,
0x33,
0x04,
0x9a,
0xfa,
0x25,
0x8d,
0xd8,
0xd4,
0x61,
0x74,
0x1b,
0x97,
0xe4,
0x61, 0xc2, 0x9f, 0x25, 0x4a, 0x94, 0x33, 0x66, 0xcc, 0x83, 0x1d, 0x3a,
0x74, 0xe8, 0xcb, 0x8d]);
var s =
0x63,
0xfe,
0xad,
0x36,
0x04,
0xeb,
0x52,
0x20,
0xd0,
0x50,
0xbc,
0x5f,
0x60,
0xde,
0xc2,
0x8d,
0xba,
0x4b,
0x61,
0x69,
0x8c,
0xb0,
new Uint8Array([
0x7c, 0x77, 0x7b, 0xf2,
0xd7, 0xab, 0x76, 0xca,
0xd4, 0xa2, 0xaf, 0x9c,
0x3f, 0xf7, 0xcc, 0x34,
0xc7, 0x23, 0xc3, 0x18,
0x27, 0xb2, 0x75, 0x09,
0x3b, 0xd6, 0xb3, 0x29,
0xfc, 0xb1, 0x5b, 0x6a,
0xef, 0xaa, 0xfb, 0x43,
0x3c, 0x9f, 0xa8, 0x51,
0xb6, 0xda, 0x21, 0x10,
0x97, 0x44, 0x17, 0xc4,
0x81, 0x4f, 0xdc, 0x22,
0x5e, 0x0b, 0xdb, 0xe0,
0xd3, 0xac, 0x62, 0x91,
0xd5, 0x4e, 0xa9, 0x6c,
0x78, 0x25, 0x2e, 0x1c,
0xbd, 0x8b, 0x8a, 0x70,
0x35, 0x57, 0xb9, 0x86,
0xd9, 0x8e, 0x94, 0x9b,
0xa1, 0x89, 0x0d, 0xbf,
0x54, 0xbb, 0x16]);
0x6b,
0x82,
0xa4,
0xa5,
0x96,
0x83,
0xe3,
0xcb,
0x4d,
0xa3,
0xff,
0xa7,
0x2a,
0x32,
0x95,
0x56,
0xa6,
0x3e,
0xc1,
0x1e,
0xe6,
0x6f,
0xc9,
0x72,
0xe5,
0x05,
0x2c,
0x2f,
0xbe,
0x33,
0x40,
0xf3,
0x7e,
0x90,
0x3a,
0xe4,
0xf4,
0xb4,
0xb5,
0x1d,
0x87,
0x42,
0xc5,
0x7d,
0xc0,
0xf1,
0x9a,
0x1a,
0x84,
0x39,
0x85,
0x8f,
0xd2,
0x3d,
0x88,
0x0a,
0x79,
0xea,
0xc6,
0x66,
0x9e,
0xe9,
0x68,
0x30,
0xfa,
0xb7,
0x71,
0x07,
0x1b,
0x53,
0x4a,
0x45,
0x92,
0xcd,
0x64,
0x46,
0x49,
0xe7,
0x65,
0xe8,
0x48,
0xe1,
0xce,
0x41,
0x01,
0x59,
0xfd,
0xd8,
0x12,
0x6e,
0xd1,
0x4c,
0xf9,
0x9d,
0x0c,
0x5d,
0xee,
0x06,
0xc8,
0x7a,
0xdd,
0x03,
0xf8,
0x55,
0x99,
0x67,
0x47,
0x93,
0x31,
0x80,
0x5a,
0x00,
0x58,
0x02,
0x38,
0x13,
0x19,
0xb8,
0x24,
0x37,
0xae,
0x74,
0xf6,
0x98,
0x28,
0x2d,
0x2b,
0xf0,
0x26,
0x15,
0xe2,
0xa0,
0xed,
0xcf,
0x7f,
0xf5,
0xec,
0x73,
0x14,
0x5c,
0x6d,
0x08,
0x1f,
0x0e,
0x11,
0xdf,
0x0f,
0x36,
0xe3,
0xde,
0x4c,
0xd9,
0xf8,
0x65,
0x15,
0xbc,
0x2c,
0x13,
0xf2,
0xad,
0xf1,
0x18,
0xdb,
0x07,
0x51,
0xc9,
0xeb,
0x77,
0xa5,
0x39,
0xe9,
0x95,
0x24,
0xf6,
0xb6,
0x46,
0xd3,
0x1e,
0x8a,
0xcf,
0x35,
0x1a,
0xbe,
0xc0,
0xc7,
0x7f,
0x9c,
0xbb,
0xd6,
0x38,
0x82,
0xcb,
0x0b,
0xb2,
0x64,
0x92,
0x57,
0x0a,
0x8f,
0x6b,
0xce,
0x85,
0x71,
0x1b,
0xfe,
0x31,
0xa9,
0xef,
0x3c,
0x26,
0xbf,
0x9b,
0x54,
0x42,
0x76,
0x86,
0x6c,
0xa7,
0xf7,
0xca,
0x3a,
0xf0,
0xe2,
0x1d,
0xfc,
0x78,
0xb1,
0x19,
0xa0,
0x83,
0xe1,
0x40,
0x2f,
0x7b,
0xfa,
0x5b,
0x68,
0x70,
0x8d,
0xe4,
0x3f,
0x91,
0xb4,
0xf9,
0x29,
0x56,
0xcd,
0x12,
0xb5,
0xe0,
0x53,
0x69,
0xa3,
0xff,
0x94,
0xc3,
0xa2,
0x98,
0x48,
0x9d,
0x58,
0x0f,
0x11,
0xe6,
0x37,
0xc5,
0x3e,
0x5a,
0x10,
0x4a,
0x3b,
0x99,
0x14,
0x9e,
0x87,
0x32,
0x4e,
0x49,
0x16,
0x50,
0x84,
0x05,
0x02,
0x41,
0x73,
0xe8,
0x89,
0x4b,
0xf4,
0x59,
0x0d,
0x4d,
0x61,
0x63,
Uint32Array([
0x0e090d0b, 0x1c121a16,
0x2a3f2331, 0x70486858,
0x4665517f, 0x547e4662,
0xf28bc7ad, 0xd8b4e49c,
0x9ed1b5e3, 0x8ccaa2fe,
0xbae79bd9, 0xdb3bbb7b,
0xed16825c, 0xff0d9541,
0xb968c43e, 0x9357e70f,
0x121b171d,
0x7e416553,
0x5a774b69,
0xd6bde997,
0x82c3aff5,
0xd532b670,
0xf104984a,
0x9d5eea04,
0x3824342c,
0x6c5a724e,
0xe090d0b0,
0xc4a6fe8a,
0xa8fc8cc4,
0xc729a16d,
0xab73d323,
0x8f45fd19,
0x362d3927,
0x62537f45,
0xee99ddbb,
0xcaaff381,
0xa6f581cf,
0xc920ac66,
0xa57ade28,
0x814cf012,
0x3bab6bcb,
0x1f9d45f1,
0x73c737bf,
0xb16477e0,
0xdd3e05ae,
0xf9082b94,
0x75c2896a,
0x21bccf08,
0x764dd68d,
0x527bf8b7,
0x3e218af9,
0x8acf1c2b,
0xe6956e65,
0xc2a3405f,
0x79c8eedb,
0x2db6a8b9,
0xa17c0a47,
0x854a247d,
0xe9105633,
0x86c57b9a,
0xea9f09d4,
0xcea927ee,
0x42638510,
0x161dc372,
0xec9ab701,
0xc8ac993b,
0xa4f6eb75,
0x10187da7,
0x7c420fe9,
0x587421d3,
0x0f853856,
0x5bfb7e34,
0xd731dcca,
0xf307f2f0,
0x9f5d80be,
0x35a266c0,
0x119448fa,
0x7dce3ab4,
0xbf6d7aeb,
0xd33708a5,
0xf701269f,
0x7bcb8461,
0x2fb5c203,
0x7844db86,
0x5c72f5bc,
0x302887f2,
0x84c61120,
0xe89c636e,
0xccaa4d54,
0x77c1e3d0,
0x23bfa5b2,
0xaf75074c,
0x8b432976,
0xe7195b38,
0x88cc7691,
0xe49604df,
0xc0a02ae5,
0x4c6a881b,
0x1814ce79,
0xe293ba0a,
0xc6a59430,
0xaaffe67e,
0x1e1170ac,
0x724b02e2,
0x567d2cd8,
0x018c355d,
0x55f2733f,
0xd938d1c1,
0xfd0efffb,
0x91548db5,
0x27b971dd,
0x4be30393,
0x6fd52da9,
0x955259da,
0xc12c1fb8,
0x4de6bd46,
0x69d0937c,
0x058ae132,
0x6a5fcc9b,
0x0605bed5,
0x223390ef,
0xaef93211,
0xfa877473,
0x41ecdaf7,
0x65daf4cd,
0x09808683,
0xbd6e1051,
0xd134621f,
0xf5024c25,
0xa2f355a0,
0xf68d13c2,
0x7a47b13c,
0x5e719f06,
0x322bed48,
0xf088ad17,
0x9cd2df59,
0xb8e4f163,
0x342e539d,
0x605015ff,
0x37a10c7a,
0x13972240,
0x7fcd500e,
0xcb23c6dc,
0xa779b492,
0x834f9aa8,
0x29b07cd6, 0x038f5fe7,
0x45ea0e98, 0x57f11985,
0x61dc20a2, 0xad766df6,
0x9b5b54d1, 0x894043cc,
0xcf2512b3, 0xe51a3182,
0x43efb04d, 0x51f4a750,
0x67d99e77, 0x3daed51e,
0x0b83ec39, 0x1998fb24,
0x6456c190, 0x4e69e2a1,
0x080cb3de, 0x1a17a4c3,
0x2c3a9de4, 0x96dd063d,
0xa0f03f1a, 0xb2eb2807,
0xf48e7978, 0xdeb15a49,
0x4fe5d7fc, 0x5dfec0e1,
0x6bd3f9c6, 0x31a4b2af,
0x07898b88, 0x15929c95,
0xb3671d5a, 0x99583e6b,
0xdf3d6f14, 0xcd267809,
0xfb0b412e, 0x9ad7618c,
0xacfa58ab, 0xbee14fb6,
0xf8841ec9, 0xd2bb3df8,
0x744ebc37, 0x6655ab2a,
0x5078920d, 0x0a0fd964,
0x3c22e043, 0x2e39f75e,
0xfe81a01c, 0xd4be832d,
0x92dbd252, 0x80c0c54f,
0xb6edfc68, 0x0c0a67b1,
0x3a275e96, 0x283c498b,
0x6e5918f4, 0x44663bc5,
0x39a80171, 0x2bb3166c,
0x1d9e2f4b, 0x47e96422,
0x71c45d05, 0x63df4a18,
0xc52acbd7, 0xef15e8e6,
0xa970b999, 0xbb6bae84,
0x8d4697a3]);
function expandKey128(cipherKey) {
var b = 176, result = new Uint8Array(b);
result.set(cipherKey);
for (var j = 16, i = 1; j < b; ++i) {
// RotWord
var t1 = result[j - 3], t2 = result[j - 2],
t3 = result[j - 1], t4 = result[j - 4];
// SubWord
t1 = s[t1]; t2 = s[t2]; t3 = s[t3]; t4 = s[t4];
// Rcon
t1 = t1 ^ rcon[i];
for (var n = 0; n < 4; ++n) {
result[j] = (t1 ^= result[j - 16]); j++;
result[j] = (t2 ^= result[j - 16]); j++;
result[j] = (t3 ^= result[j - 16]); j++;
result[j] = (t4 ^= result[j - 16]); j++;
}
}
return result;
}
function decrypt128(input, key) {
var state = new Uint8Array(16);
state.set(input);
0x0d8652ec,
0x59f8148e,
0xa37f60fd,
0x87494ec7,
0xeb133c89,
0x5ffdaa5b,
0x33a7d815,
0x1791f62f,
0x4060efaa,
0x141ea9c8,
0x98d40b36,
0xbce2250c,
0xd0b85742,
0x53f7cdea,
0x3fadbfa4,
0x1b9b919e,
0x97513360,
0xc32f7502,
0x94de6c87,
0xb0e842bd,
0xdcb230f3,
0x685ca621,
0x0406d46f,
0x2030fa55,
0xdab78e26,
0x8ec9c844,
0x02036aba,
0x26354480,
0x4a6f36ce,
0x25ba1b67,
0x49e06929,
0x6dd64713,
0xe11ce5ed,
0xb562a38f,
var i, j, k;
var t, u, v;
// AddRoundKey
for (j = 0, k = 160; j < 16; ++j, ++k)
state[j] ^= key[k];
for (i = 9; i >= 1; --i) {
// InvShiftRows
t = state[13]; state[13] = state[9]; state[9] = state[5];
state[5] = state[1]; state[1] = t;
t = state[14]; u = state[10]; state[14] = state[6];
state[10] = state[2]; state[6] = t; state[2] = u;
t = state[15]; u = state[11]; v = state[7]; state[15] = state[3];
state[11] = t; state[7] = u; state[3] = v;
// InvSubBytes
for (j = 0; j < 16; ++j)
state[j] = inv_s[state[j]];
// AddRoundKey
for (j = 0, k = i * 16; j < 16; ++j, ++k)
state[j] ^= key[k];
// InvMixColumns
for (j = 0; j < 16; j += 4) {
var s0 = mix[state[j]], s1 = mix[state[j + 1]],
s2 = mix[state[j + 2]], s3 = mix[state[j + 3]];
t = (s0 ^ (s1 >>> 8) ^ (s1 << 24) ^ (s2 >>> 16) ^ (s2 << 16) ^
(s3 >>> 24) ^ (s3 << 8));
state[j] = (t >>> 24) & 0xFF;
state[j + 1] = (t >> 16) & 0xFF;
state[j + 2] = (t >> 8) & 0xFF;
state[j + 3] = t & 0xFF;
}
}
// InvShiftRows
t = state[13]; state[13] = state[9]; state[9] = state[5];
state[5] = state[1]; state[1] = t;
t = state[14]; u = state[10]; state[14] = state[6];
state[10] = state[2]; state[6] = t; state[2] = u;
t = state[15]; u = state[11]; v = state[7]; state[15] = state[3];
state[11] = t; state[7] = u; state[3] = v;
for (j = 0; j < 16; ++j) {
// InvSubBytes
state[j] = inv_s[state[j]];
// AddRoundKey
state[j] ^= key[j];
}
return state;
}
function AES128Cipher(key) {
this.key = expandKey128(key);
this.buffer = new Uint8Array(16);
this.bufferPosition = 0;
}
function decryptBlock2(data) {
var i, j, ii, sourceLength = data.length,
buffer = this.buffer, bufferLength = this.bufferPosition,
result = [], iv = this.iv;
for (i = 0; i < sourceLength; ++i) {
buffer[bufferLength] = data[i];
++bufferLength;
function cipherTransformDecryptStream(data) {
return cipher.decryptBlock(data);
}
);
},
decryptString: function CipherTransform_decryptString(s) {
var cipher = new this.stringCipherConstructor();
var data = stringToBytes(s);
data = cipher.decryptBlock(data);
return bytesToString(data);
}
};
return CipherTransform;
})();
var CipherTransformFactory = (function CipherTransformFactoryClosure() {
var defaultPasswordBytes = new Uint8Array([
0x28, 0xBF, 0x4E, 0x5E, 0x4E, 0x75, 0x8A, 0x41,
0x64, 0x00, 0x4E, 0x56, 0xFF, 0xFA, 0x01, 0x08,
0x2E, 0x2E, 0x00, 0xB6, 0xD0, 0x68, 0x3E, 0x80,
0x2F, 0x0C, 0xA9, 0xFE, 0x64, 0x53, 0x69, 0x7A]);
function prepareKeyData(fileId, password, ownerPassword, userPassword,
flags, revision, keyLength, encryptMetadata) {
var hashData = new Uint8Array(100), i = 0, j, n;
if (password) {
n = Math.min(32, password.length);
for (; i < n; ++i)
hashData[i] = password[i];
}
j = 0;
while (i < 32) {
hashData[i++] = defaultPasswordBytes[j++];
}
// as now the padded password in the hashData[0..i]
for (j = 0, n = ownerPassword.length; j < n; ++j)
hashData[i++] = ownerPassword[j];
hashData[i++] = flags & 0xFF;
hashData[i++] = (flags >> 8) & 0xFF;
hashData[i++] = (flags >> 16) & 0xFF;
hashData[i++] = (flags >>> 24) & 0xFF;
for (j = 0, n = fileId.length; j < n; ++j)
hashData[i++] = fileId[j];
if (revision >= 4 && !encryptMetadata) {
hashData[i++] = 0xFF;
hashData[i++] = 0xFF;
hashData[i++] = 0xFF;
hashData[i++] = 0xFF;
}
var hash = calculateMD5(hashData, 0, i);
var keyLengthInBytes = keyLength >> 3;
if (revision >= 3) {
for (j = 0; j < 50; ++j) {
hash = calculateMD5(hash, 0, keyLengthInBytes);
}
}
var encryptionKey = hash.subarray(0, keyLengthInBytes);
var cipher, checkData;
if (revision >= 3) {
}
var identityName = new Name('Identity');
function CipherTransformFactory(dict, fileId, password) {
var filter = dict.get('Filter');
if (!isName(filter) || filter.name != 'Standard')
error('unknown encryption method');
this.dict = dict;
var algorithm = dict.get('V');
if (!isInt(algorithm) ||
(algorithm != 1 && algorithm != 2 && algorithm != 4))
error('unsupported encryption algorithm');
this.algorithm = algorithm;
var keyLength = dict.get('Length') || 40;
if (!isInt(keyLength) ||
keyLength < 40 || (keyLength % 8) != 0)
error('invalid key length');
// prepare keys
var ownerPassword = stringToBytes(dict.get('O'));
var userPassword = stringToBytes(dict.get('U'));
var flags = dict.get('P');
var revision = dict.get('R');
var encryptMetadata = algorithm == 4 && // meaningful when V is 4
dict.get('EncryptMetadata') !== false; // makes true as default value
this.encryptMetadata = encryptMetadata;
var fileIdBytes = stringToBytes(fileId);
var passwordBytes;
if (password)
passwordBytes = stringToBytes(password);
var encryptionKey = prepareKeyData(fileIdBytes, passwordBytes,
ownerPassword, userPassword, flags,
revision, keyLength, encryptMetadata);
if (!encryptionKey && !password) {
throw new PasswordException('No password given', 'needpassword');
} else if (!encryptionKey && password) {
// Attempting use the password as an owner password
var decodedPassword = decodeUserPassword(passwordBytes, ownerPassword,
revision, keyLength);
encryptionKey = prepareKeyData(fileIdBytes, decodedPassword,
ownerPassword, userPassword, flags,
revision, keyLength, encryptMetadata);
}
if (!encryptionKey)
throw new PasswordException('Incorrect Password', 'incorrectpassword');
this.encryptionKey = encryptionKey;
if (algorithm == 4) {
this.cf = dict.get('CF');
this.stmf = dict.get('StmF') || identityName;
this.strf = dict.get('StrF') || identityName;
this.eff = dict.get('EFF') || this.strf;
}
}
function buildObjectKey(num, gen, encryptionKey, isAes) {
};
return CipherTransformFactory;
})();
Tc: 'setCharSpacing',
Tw: 'setWordSpacing',
Tz: 'setHScale',
TL: 'setLeading',
Tf: 'setFont',
Tr: 'setTextRenderingMode',
Ts: 'setTextRise',
Td: 'moveText',
TD: 'setLeadingMoveText',
Tm: 'setTextMatrix',
'T*': 'nextLine',
Tj: 'showText',
TJ: 'showSpacedText',
"'": 'nextLineShowText',
'"': 'nextLineSetSpacingShowText',
// Type3 fonts
d0: 'setCharWidth',
d1: 'setCharWidthAndBounds',
// Color
CS: 'setStrokeColorSpace',
cs: 'setFillColorSpace',
SC: 'setStrokeColor',
SCN: 'setStrokeColorN',
sc: 'setFillColor',
scn: 'setFillColorN',
G: 'setStrokeGray',
g: 'setFillGray',
RG: 'setStrokeRGBColor',
rg: 'setFillRGBColor',
K: 'setStrokeCMYKColor',
k: 'setFillCMYKColor',
// Shading
sh: 'shadingFill',
// Images
BI: 'beginInlineImage',
ID: 'beginImageData',
EI: 'endInlineImage',
// XObjects
Do: 'paintXObject',
// Marked content
MP: 'markPoint',
DP: 'markPointProps',
BMC: 'beginMarkedContent',
BDC: 'beginMarkedContentProps',
EMC: 'endMarkedContent',
// Compatibility
BX: 'beginCompat',
EX: 'endCompat',
// (reserved partial commands for the lexer)
BM: null,
BD: null,
'true': null,
fa: null,
fal: null,
fals: null,
'false': null,
nu: null,
nul: null,
'null': null
};
PartialEvaluator.prototype = {
loadFont: function PartialEvaluator_loadFont(fontName, font, xref,
resources, dependency) {
var fontRes = resources.get('Font');
assert(fontRes, 'fontRes not available');
++this.fontIdCounter;
font = xref.fetchIfRef(font) || fontRes.get(fontName);
if (!isDict(font)) {
return {
translated: new ErrorFont('Font ' + fontName + ' is not available'),
loadedName: 'g_font_' + this.uniquePrefix + this.fontIdCounter
};
}
var loadedName = font.loadedName;
if (!loadedName) {
// keep track of each font we translated so the caller can
// load them asynchronously before calling display on a page
loadedName = 'g_font_' + this.uniquePrefix + this.fontIdCounter;
font.loadedName = loadedName;
var translated;
try {
translated = this.translateFont(font, xref, resources,
dependency);
} catch (e) {
translated = new ErrorFont(e instanceof Error ? e.message : e);
}
font.translated = translated;
var data = translated;
if (data.loadCharProcs) {
delete data.loadCharProcs;
var charProcs = font.get('CharProcs').getAll();
var fontResources = font.get('Resources') || resources;
var charProcOperatorList = {};
for (var key in charProcs) {
var glyphStream = charProcs[key];
charProcOperatorList[key] =
this.getOperatorList(glyphStream, fontResources, dependency);
}
data.charProcOperatorList = charProcOperatorList;
}
}
return font;
},
self = this;
xref = this.xref;
handler = this.handler;
pageIndex = this.pageIndex;
uniquePrefix = this.uniquePrefix || '';
function insertDependency(depList) {
fnArray.push('dependency');
argsArray.push(depList);
for (var i = 0, ii = depList.length; i < ii; i++) {
var dep = depList[i];
if (dependency.indexOf(dep) == -1) {
dependency.push(depList[i]);
}
}
}
function handleSetFont(fontName, font) {
font = self.loadFont(fontName, font, xref, resources, dependency);
var loadedName = font.loadedName;
if (!font.sent) {
var data = font.translated.exportData();
handler.send('commonobj', [
loadedName,
'Font',
data
]);
font.sent = true;
}
// Ensure the font is ready before the font is set
// and later on used for drawing.
// OPTIMIZE: This should get insert to the operatorList only once per
// page.
insertDependency([loadedName]);
return loadedName;
}
function buildPaintImageXObject(image, inline) {
var dict = image.dict;
var w = dict.get('Width', 'W');
var h = dict.get('Height', 'H');
var imageMask = dict.get('ImageMask', 'IM') || false;
if (imageMask) {
// This depends on a tmpCanvas beeing filled with the
// current fillStyle, such that processing the pixel
// data can't be done here. Instead of creating a
// complete PDFImage, only read the information needed
// for later.
var width = dict.get('Width', 'W');
var height = dict.get('Height', 'H');
var
var
var
var
fn = 'paintImageMaskXObject';
args = [imgArray, inverseDecode, width, height];
return;
}
// If there is no imageMask, create the PDFImage and a lot
// of image processing can be done here.
var objId = 'img_' + uniquePrefix + (++self.objIdCounter);
insertDependency([objId]);
args = [objId, w, h];
var softMask = dict.get('SMask', 'SM') || false;
var mask = dict.get('Mask') || false;
if (!softMask && !mask && image instanceof JpegStream &&
image.isNativelySupported(xref, resources)) {
// These JPEGs don't need any more processing so we can just send it.
fn = 'paintJpegXObject';
handler.send('obj', [objId, pageIndex, 'JpegStream', image.getIR()]);
return;
}
fn = 'paintImageXObject';
PDFImage.buildImage(function(imageObj) {
var drawWidth = imageObj.drawWidth;
var drawHeight = imageObj.drawHeight;
var imgData = {
width: drawWidth,
height: drawHeight,
data: new Uint8Array(drawWidth * drawHeight * 4)
};
var pixels = imgData.data;
imageObj.fillRgbaBuffer(pixels, drawWidth, drawHeight);
handler.send('obj', [objId, pageIndex, 'Image', imgData]);
}, handler, xref, resources, image, inline);
}
if (!queue)
queue = {};
if (!queue.argsArray) {
queue.argsArray = [];
}
if (!queue.fnArray) {
queue.fnArray = [];
}
var fnArray = queue.fnArray, argsArray = queue.argsArray;
var dependencyArray = dependency || [];
resources = resources || new Dict();
var xobjs = resources.get('XObject') || new Dict();
var patterns = resources.get('Pattern') || new Dict();
var parser = new Parser(new Lexer(stream, OP_MAP), false, xref);
if ('Form' == type.name) {
var matrix = xobj.dict.get('Matrix');
var bbox = xobj.dict.get('BBox');
fnArray.push('paintFormXObjectBegin');
argsArray.push([matrix, bbox]);
// This adds the operatorList of the xObj to the current queue.
var depIdx = dependencyArray.length;
// Pass in the current `queue` object. That means the `fnArray`
// and the `argsArray` in this scope is reused and new commands
// are added to them.
this.getOperatorList(xobj,
xobj.dict.get('Resources') || resources,
dependencyArray, queue);
// Add the dependencies that are required to execute the
// operatorList.
insertDependency(dependencyArray.slice(depIdx));
fn = 'paintFormXObjectEnd';
args = [];
} else if ('Image' == type.name) {
buildPaintImageXObject(xobj, false);
} else {
error('Unhandled XObject subtype ' + type.name);
}
}
} else if (cmd == 'Tf') { // eagerly collect all fonts
args[0] = handleSetFont(args[0].name);
} else if (cmd == 'EI') {
buildPaintImageXObject(args[0], true);
}
switch (fn) {
// Parse the ColorSpace data to a raw format.
case 'setFillColorSpace':
case 'setStrokeColorSpace':
args = [ColorSpace.parseToIR(args[0], xref, resources)];
break;
case 'shadingFill':
var shadingRes = res.get('Shading');
if (!shadingRes)
error('No shading resource found');
var shading = shadingRes.get(args[0].name);
if (!shading)
error('No shading object found');
var shadingFill = Pattern.parseShading(shading, null, xref, res);
var patternIR = shadingFill.getIR();
args = [patternIR];
fn = 'shadingFill';
break;
case 'setGState':
var dictName = args[0];
var extGState = resources.get('ExtGState');
if (!isDict(extGState) || !extGState.has(dictName.name))
break;
var gsState = extGState.get(dictName.name);
// This array holds the converted/processed state data.
var gsStateObj = [];
gsState.forEach(
function canvasGraphicsSetGStateForEach(key, value) {
switch (key) {
case 'Type':
break;
case 'LW':
case 'LC':
case 'LJ':
case 'ML':
case 'D':
case 'RI':
case 'FL':
case 'CA':
case 'ca':
gsStateObj.push([key, value]);
break;
case 'Font':
gsStateObj.push([
'Font',
handleSetFont(null, value[0]),
value[1]
]);
break;
case 'BM':
// We support the default so don't trigger the TODO.
if (!isName(value) || value.name != 'Normal')
TODO('graphic state operator ' + key);
break;
case 'SMask':
// We support the default so don't trigger the TODO.
if (!isName(value) || value.name != 'None')
TODO('graphic state operator ' + key);
break;
// Only generate info log messages for the following since
// they are unlikey to have a big impact on the rendering.
case 'OP':
case 'op':
case 'OPM':
case 'BG':
case 'BG2':
case 'UCR':
case 'UCR2':
case 'TR':
case 'TR2':
case 'HT':
case 'SM':
case 'SA':
case 'AIS':
case 'TK':
// TODO implement these operators.
info('graphic state operator ' + key);
break;
default:
info('Unknown graphic state operator ' + key);
break;
}
}
);
args = [gsStateObj];
break;
} // switch
fnArray.push(fn);
argsArray.push(args);
args = [];
} else if (obj != null) {
assertWellFormed(args.length <= 33, 'Too many arguments');
args.push(obj instanceof Dict ? obj.getAll() : obj);
}
}
return queue;
},
getTextContent: function PartialEvaluator_getTextContent(
stream, resources, state) {
var bidiTexts;
var SPACE_FACTOR = 0.35;
var MULTI_SPACE_FACTOR = 1.5;
if (!state) {
bidiTexts = [];
state = {
bidiTexts: bidiTexts
};
} else {
bidiTexts = state.bidiTexts;
}
var self = this;
var xref = this.xref;
function handleSetFont(fontName, fontRef) {
return self.loadFont(fontName, fontRef, xref, resources, null);
}
resources = xref.fetchIfRef(resources) || new Dict();
// The xobj is parsed iff it's needed, e.g. if there is a `DO` cmd.
var xobjs = null;
var parser = new Parser(new Lexer(stream), false);
var res = resources;
var args = [], obj;
var chunk = '';
var font = null;
while (!isEOF(obj = parser.getObj())) {
if (isCmd(obj)) {
var cmd = obj.cmd;
switch (cmd) {
// TODO: Add support for SAVE/RESTORE and XFORM here.
case 'Tf':
font = handleSetFont(args[0].name).translated;
break;
case 'TJ':
var items = args[0];
for (var j = 0, jj = items.length; j < jj; j++) {
if (typeof items[j] === 'string') {
chunk += fontCharsToUnicode(items[j], font);
} else if (items[j] < 0 && font.spaceWidth > 0) {
var fakeSpaces = -items[j] / font.spaceWidth;
if (fakeSpaces > MULTI_SPACE_FACTOR) {
fakeSpaces = Math.round(fakeSpaces);
while (fakeSpaces--) {
chunk += ' ';
}
} else if (fakeSpaces > SPACE_FACTOR) {
chunk += ' ';
}
}
}
break;
case 'Tj':
chunk += fontCharsToUnicode(args[0], font);
break;
case "'":
// For search, adding a extra white space for line breaks would be
// better here, but that causes too much spaces in the
// text-selection divs.
chunk += fontCharsToUnicode(args[0], font);
break;
case '"':
// Note comment in "'"
chunk += fontCharsToUnicode(args[2], font);
break;
case 'Do':
// Set the chunk such that the following if won't add something
// to the state.
chunk = '';
if (args[0].code) {
break;
}
if (!xobjs) {
xobjs = resources.get('XObject') || new Dict();
}
var name = args[0].name;
var xobj = xobjs.get(name);
if (!xobj)
break;
assertWellFormed(isStream(xobj), 'XObject should be a stream');
var type = xobj.dict.get('Subtype');
assertWellFormed(
isName(type),
'XObject should have a Name subtype'
);
if ('Form' !== type.name)
break;
state = this.getTextContent(
xobj,
xobj.dict.get('Resources') || resources,
state
);
break;
case 'gs':
var dictName = args[0];
var extGState = resources.get('ExtGState');
if (!isDict(extGState) || !extGState.has(dictName.name))
break;
var gsState = extGState.get(dictName.name);
for (var i = 0; i < gsState.length; i++) {
if (gsState[i] === 'Font') {
font = handleSetFont(args[0].name).translated;
}
}
break;
} // switch
if (chunk !== '') {
bidiTexts.push(PDFJS.bidi(chunk, -1));
chunk = '';
}
args = [];
} else if (obj != null) {
assertWellFormed(args.length <= 33, 'Too many arguments');
args.push(obj);
}
} // while
return state;
},
extractDataStructures: function
partialEvaluatorExtractDataStructures(dict, baseDict,
xref, properties) {
// 9.10.2
var toUnicode = dict.get('ToUnicode') ||
baseDict.get('ToUnicode');
if (toUnicode)
properties.toUnicode = this.readToUnicode(toUnicode, xref, properties);
if (properties.composite) {
// CIDSystemInfo helps to match CID to glyphs
var cidSystemInfo = dict.get('CIDSystemInfo');
if (isDict(cidSystemInfo)) {
properties.cidSystemInfo = {
registry: cidSystemInfo.get('Registry'),
ordering: cidSystemInfo.get('Ordering'),
supplement: cidSystemInfo.get('Supplement')
};
}
} else if (isStream(cmapObj)) {
var tokens = [];
var token = '';
var beginArrayToken = {};
var cmap = cmapObj.getBytes(cmapObj.length);
for (var i = 0, ii = cmap.length; i < ii; i++) {
var octet = cmap[i];
if (octet == 0x20 || octet == 0x0D || octet == 0x0A ||
octet == 0x3C || octet == 0x5B || octet == 0x5D) {
switch (token) {
case 'usecmap':
error('usecmap is not implemented');
break;
case 'beginbfchar':
case 'beginbfrange':
case 'begincidchar':
case 'begincidrange':
token = '';
tokens = [];
break;
case 'endcidrange':
case 'endbfrange':
for (var j = 0, jj = tokens.length; j < jj; j += 3) {
var startRange = tokens[j];
var endRange = tokens[j + 1];
var code = tokens[j + 2];
if (code == 0xFFFF) {
// CMap is broken, assuming code == startRange
code = startRange;
}
if (isArray(code)) {
var codeindex = 0;
while (startRange <= endRange) {
charToUnicode[startRange] = code[codeindex++];
++startRange;
}
} else {
while (startRange <= endRange) {
charToUnicode[startRange] = code++;
++startRange;
}
}
}
break;
case 'endcidchar':
case 'endbfchar':
for (var j = 0, jj = tokens.length; j < jj; j += 2) {
var index = tokens[j];
var code = tokens[j + 1];
charToUnicode[index] = code;
}
break;
case '':
break;
default:
if (token[0] >= '0' && token[0] <= '9')
token = parseInt(token, 10); // a number
tokens.push(token);
token = '';
}
switch (octet) {
case 0x5B:
// begin list parsing
tokens.push(beginArrayToken);
break;
case 0x5D:
// collect array items
var items = [], item;
while (tokens.length &&
(item = tokens.pop()) != beginArrayToken)
items.unshift(item);
tokens.push(items);
break;
}
} else if (octet == 0x3E) {
if (token.length) {
// Heuristic: guessing chars size by checking numbers sizes
// in the CMap entries.
if (token.length == 2 && properties.composite)
properties.wideChars = false;
if (token.length <= 4) {
// parsing hex number
tokens.push(parseInt(token, 16));
token = '';
} else {
// parsing hex UTF-16BE numbers
var str = [];
for (var k = 0, kk = token.length; k < kk; k += 4) {
var b = parseInt(token.substr(k, 4), 16);
if (b <= 0x10) {
k += 4;
b = (b << 16) | parseInt(token.substr(k, 4), 16);
b -= 0x10000;
str.push(0xD800 | (b >> 10));
str.push(0xDC00 | (b & 0x3FF));
break;
}
str.push(b);
}
tokens.push(String.fromCharCode.apply(String, str));
token = '';
}
}
} else {
token += String.fromCharCode(octet);
}
}
}
return charToUnicode;
},
readCidToGidMap: function PartialEvaluator_readCidToGidMap(cidToGidStream) {
// Extract the encoding from the CIDToGIDMap
var glyphsData = cidToGidStream.getBytes();
}
// Heuristic: detection of monospace font by checking all non-zero widths
var isMonospace = true, firstWidth = defaultWidth;
for (var glyph in glyphsWidths) {
var glyphWidth = glyphsWidths[glyph];
if (!glyphWidth)
continue;
if (!firstWidth) {
firstWidth = glyphWidth;
continue;
}
if (firstWidth != glyphWidth) {
isMonospace = false;
break;
}
}
if (isMonospace)
properties.flags |= FontFlags.FixedPitch;
properties.defaultWidth = defaultWidth;
properties.widths = glyphsWidths;
},
getBaseFontMetrics: function PartialEvaluator_getBaseFontMetrics(name) {
var defaultWidth = 0, widths = [], monospace = false;
var glyphWidths = Metrics[stdFontMap[name] || name];
if (isNum(glyphWidths)) {
defaultWidth = glyphWidths;
monospace = true;
} else {
widths = glyphWidths;
}
return {
defaultWidth: defaultWidth,
monospace: monospace,
widths: widths
};
},
translateFont: function PartialEvaluator_translateFont(dict,
xref,
resources,
dependency) {
var baseDict = dict;
var type = dict.get('Subtype');
assertWellFormed(isName(type), 'invalid font Subtype');
var composite = false;
if (type.name == 'Type0') {
// If font is a composite
// - get the descendant font
// - set the type according to the descendant font
// - get the FontDescriptor from the descendant font
var df = dict.get('DescendantFonts');
if (!df)
error('Descendant fonts are not specified');
dict = isArray(df) ? xref.fetchIfRef(df[0]) : df;
type = dict.get('Subtype');
assertWellFormed(isName(type), 'invalid font Subtype');
composite = true;
}
var maxCharIndex = composite ? 0xFFFF : 0xFF;
var descriptor = dict.get('FontDescriptor');
if (!descriptor) {
if (type.name == 'Type3') {
// FontDescriptor is only required for Type3 fonts when the document
// is a tagged pdf. Create a barbebones one to get by.
descriptor = new Dict();
descriptor.set('FontName', new Name(type.name));
} else {
// Before PDF 1.5 if the font was one of the base 14 fonts, having a
// FontDescriptor was not required.
// This case is here for compatibility.
var baseFontName = dict.get('BaseFont');
if (!isName(baseFontName))
error('Base font is not specified');
// Using base font name as a font name.
baseFontName = baseFontName.name.replace(/[,_]/g, '-');
var metrics = this.getBaseFontMetrics(baseFontName);
// Simulating descriptor flags attribute
var fontNameWoStyle = baseFontName.split('-')[0];
var flags = (serifFonts[fontNameWoStyle] ||
(fontNameWoStyle.search(/serif/gi) != -1) ? FontFlags.Serif : 0) |
(metrics.monospace ? FontFlags.FixedPitch : 0) |
(symbolsFonts[fontNameWoStyle] ? FontFlags.Symbolic :
FontFlags.Nonsymbolic);
var properties = {
type: type.name,
widths: metrics.widths,
defaultWidth: metrics.defaultWidth,
flags: flags,
firstChar: 0,
lastChar: maxCharIndex
};
this.extractDataStructures(dict, dict, xref, properties);
return new Font(baseFontName, null, properties);
}
}
// According to the spec if 'FontDescriptor' is declared, 'FirstChar',
// 'LastChar' and 'Widths' should exist too, but some PDF encoders seem
// to ignore this rule when a variant of a standart font is used.
// TODO Fill the width array depending on which of the base font this is
// a variant.
var firstChar = dict.get('FirstChar') || 0;
var lastChar = dict.get('LastChar') || maxCharIndex;
var fontName = descriptor.get('FontName');
// Some bad pdf's have a string as the font name.
if (isString(fontName))
fontName = new Name(fontName);
assertWellFormed(isName(fontName), 'invalid font name');
WinAnsiEncoding: ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
'', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
'space', 'exclam', 'quotedbl', 'numbersign', 'dollar', 'percent',
'ampersand', 'quotesingle', 'parenleft', 'parenright', 'asterisk', 'plus',
'comma', 'hyphen', 'period', 'slash', 'zero', 'one', 'two', 'three',
'four', 'five', 'six', 'seven', 'eight', 'nine', 'colon', 'semicolon',
'less', 'equal', 'greater', 'question', 'at', 'A', 'B', 'C', 'D', 'E', 'F',
'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U',
'V', 'W', 'X', 'Y', 'Z', 'bracketleft', 'backslash', 'bracketright',
'asciicircum', 'underscore', 'grave', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z', 'braceleft', 'bar', 'braceright', 'asciitilde',
'bullet', 'Euro', 'bullet', 'quotesinglbase', 'florin', 'quotedblbase',
'ellipsis', 'dagger', 'daggerdbl', 'circumflex', 'perthousand', 'Scaron',
'guilsinglleft', 'OE', 'bullet', 'Zcaron', 'bullet', 'bullet', 'quoteleft',
'quoteright', 'quotedblleft', 'quotedblright', 'bullet', 'endash',
'emdash', 'tilde', 'trademark', 'scaron', 'guilsinglright', 'oe', 'bullet',
'zcaron', 'Ydieresis', '', 'exclamdown', 'cent', 'sterling',
'currency', 'yen', 'brokenbar', 'section', 'dieresis', 'copyright',
'ordfeminine', 'guillemotleft', 'logicalnot', 'hyphen', 'registered',
'macron', 'degree', 'plusminus', 'twosuperior', 'threesuperior', 'acute',
'mu', 'paragraph', 'periodcentered', 'cedilla', 'onesuperior',
'ordmasculine', 'guillemotright', 'onequarter', 'onehalf', 'threequarters',
'questiondown', 'Agrave', 'Aacute', 'Acircumflex', 'Atilde', 'Adieresis',
'Aring', 'AE', 'Ccedilla', 'Egrave', 'Eacute', 'Ecircumflex', 'Edieresis',
'Igrave', 'Iacute', 'Icircumflex', 'Idieresis', 'Eth', 'Ntilde', 'Ograve',
'Oacute', 'Ocircumflex', 'Otilde', 'Odieresis', 'multiply', 'Oslash',
'Ugrave', 'Uacute', 'Ucircumflex', 'Udieresis', 'Yacute', 'Thorn',
'germandbls', 'agrave', 'aacute', 'acircumflex', 'atilde', 'adieresis',
'aring', 'ae', 'ccedilla', 'egrave', 'eacute', 'ecircumflex', 'edieresis',
'igrave', 'iacute', 'icircumflex', 'idieresis', 'eth', 'ntilde', 'ograve',
'oacute', 'ocircumflex', 'otilde', 'odieresis', 'divide', 'oslash',
'ugrave', 'uacute', 'ucircumflex', 'udieresis', 'yacute', 'thorn',
'ydieresis'],
symbolsEncoding: ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
'', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
'space', 'exclam', 'universal', 'numbersign', 'existential', 'percent',
'ampersand', 'suchthat', 'parenleft', 'parenright', 'asteriskmath', 'plus',
'comma', 'minus', 'period', 'slash', 'zero', 'one', 'two', 'three', 'four',
'five', 'six', 'seven', 'eight', 'nine', 'colon', 'semicolon', 'less',
'equal', 'greater', 'question', 'congruent', 'Alpha', 'Beta', 'Chi',
'Delta', 'Epsilon', 'Phi', 'Gamma', 'Eta', 'Iota', 'theta1', 'Kappa',
'Lambda', 'Mu', 'Nu', 'Omicron', 'Pi', 'Theta', 'Rho', 'Sigma', 'Tau',
'Upsilon', 'sigma1', 'Omega', 'Xi', 'Psi', 'Zeta', 'bracketleft',
'therefore', 'bracketright', 'perpendicular', 'underscore', 'radicalex',
'alpha', 'beta', 'chi', 'delta', 'epsilon', 'phi', 'gamma', 'eta', 'iota',
'phi1', 'kappa', 'lambda', 'mu', 'nu', 'omicron', 'pi', 'theta', 'rho',
'sigma', 'tau', 'upsilon', 'omega1', 'omega', 'xi', 'psi', 'zeta',
'braceleft', 'bar', 'braceright', 'similar', '', '', '', '', '', '', '',
'', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',
'', '', '', '', '', '', '', 'Euro', 'Upsilon1', 'minute', 'lessequal',
'fraction', 'infinity', 'florin', 'club', 'diamond', 'heart', 'spade',
'arrowboth', 'arrowleft', 'arrowup', 'arrowright', 'arrowdown', 'degree',
'plusminus', 'second', 'greaterequal', 'multiply', 'proportional',
'partialdiff', 'bullet', 'divide', 'notequal', 'equivalence',
'approxequal', 'ellipsis', 'arrowvertex', 'arrowhorizex', 'carriagereturn',
'aleph', 'Ifraktur', 'Rfraktur', 'weierstrass', 'circlemultiply',
'circleplus', 'emptyset', 'intersection', 'union', 'propersuperset',
'reflexsuperset', 'notsubset', 'propersubset', 'reflexsubset', 'element',
'notelement', 'angle', 'gradient', 'registerserif', 'copyrightserif',
'CourierNew': 'Courier',
'CourierNew-Bold': 'Courier-Bold',
'CourierNew-BoldItalic': 'Courier-BoldOblique',
'CourierNew-Italic': 'Courier-Oblique',
'CourierNewPS-BoldItalicMT': 'Courier-BoldOblique',
'CourierNewPS-BoldMT': 'Courier-Bold',
'CourierNewPS-ItalicMT': 'Courier-Oblique',
'CourierNewPSMT': 'Courier',
'Helvetica-Bold': 'Helvetica-Bold',
'Helvetica-BoldItalic': 'Helvetica-BoldOblique',
'Helvetica-Italic': 'Helvetica-Oblique',
'Symbol-Bold': 'Symbol',
'Symbol-BoldItalic': 'Symbol',
'Symbol-Italic': 'Symbol',
'TimesNewRoman': 'Times-Roman',
'TimesNewRoman-Bold': 'Times-Bold',
'TimesNewRoman-BoldItalic': 'Times-BoldItalic',
'TimesNewRoman-Italic': 'Times-Italic',
'TimesNewRomanPS': 'Times-Roman',
'TimesNewRomanPS-Bold': 'Times-Bold',
'TimesNewRomanPS-BoldItalic': 'Times-BoldItalic',
'TimesNewRomanPS-BoldItalicMT': 'Times-BoldItalic',
'TimesNewRomanPS-BoldMT': 'Times-Bold',
'TimesNewRomanPS-Italic': 'Times-Italic',
'TimesNewRomanPS-ItalicMT': 'Times-Italic',
'TimesNewRomanPSMT': 'Times-Roman',
'TimesNewRomanPSMT-Bold': 'Times-Bold',
'TimesNewRomanPSMT-BoldItalic': 'Times-BoldItalic',
'TimesNewRomanPSMT-Italic': 'Times-Italic'
};
/**
* Holds the map of the non-standard fonts that might be included as a standard
* fonts without glyph data.
*/
var nonStdFontMap = {
'ComicSansMS': 'Comic Sans MS',
'ComicSansMS-Bold': 'Comic Sans MS-Bold',
'ComicSansMS-BoldItalic': 'Comic Sans MS-BoldItalic',
'ComicSansMS-Italic': 'Comic Sans MS-Italic',
'LucidaConsole': 'Courier',
'LucidaConsole-Bold': 'Courier-Bold',
'LucidaConsole-BoldItalic': 'Courier-BoldOblique',
'LucidaConsole-Italic': 'Courier-Oblique'
};
var serifFonts = {
'Adobe Jenson': true, 'Adobe Text': true, 'Albertus': true,
'Aldus': true, 'Alexandria': true, 'Algerian': true,
'American Typewriter': true, 'Antiqua': true, 'Apex': true,
'Arno': true, 'Aster': true, 'Aurora': true,
'Baskerville': true, 'Bell': true, 'Bembo': true,
'Bembo Schoolbook': true, 'Benguiat': true, 'Berkeley Old Style': true,
'Bernhard Modern': true, 'Berthold City': true, 'Bodoni': true,
'Bauer Bodoni': true, 'Book Antiqua': true, 'Bookman': true,
'Bordeaux Roman': true, 'Californian FB': true, 'Calisto': true,
'Calvert': true, 'Capitals': true, 'Cambria': true,
'Cartier': true, 'Caslon': true, 'Catull': true,
'Centaur': true, 'Century Old Style': true, 'Century Schoolbook': true,
'Chaparral': true, 'Charis SIL': true, 'Cheltenham': true,
}
function jis7ToUnicode(str) {
var bytes = stringToBytes(str);
var length = bytes.length;
for (var i = 0; i < length; ++i) {
bytes[i] |= 0x80;
}
return decodeBytes(bytes, 'euc-jp');
}
function eucjpToUnicode(str) {
return decodeBytes(stringToBytes(str), 'euc-jp');
}
function sjisToUnicode(str) {
return decodeBytes(stringToBytes(str), 'shift_jis');
}
// Some characters, e.g. copyrightserif, mapped to the private use area and
// might not be displayed using standard fonts. Mapping/hacking well-known chars
// to the similar equivalents in the normal characters range.
function mapPrivateUseChars(code) {
switch (code) {
case 0xF8E9: // copyrightsans
case 0xF6D9: // copyrightserif
return 0x00A9; // copyright
default:
return code;
}
}
var FontLoader = {
bind: function fontLoaderBind(fonts, callback) {
assert(!isWorker, 'bind() shall be called from main thread');
for (var i = 0, ii = fonts.length; i < ii; i++) {
var font = fonts[i];
if (font.attached)
continue;
font.attached = true;
font.bindDOM()
}
setTimeout(callback);
}
};
var
{
{
{
{
{
{
{
{
{
{
UnicodeRanges = [
'begin': 0x0000, 'end':
'begin': 0x0080, 'end':
'begin': 0x0100, 'end':
'begin': 0x0180, 'end':
'begin': 0x0250, 'end':
'begin': 0x02B0, 'end':
'begin': 0x0300, 'end':
'begin': 0x0370, 'end':
'begin': 0x2C80, 'end':
'begin': 0x0400, 'end':
0x007F
0x00FF
0x017F
0x024F
0x02AF
0x02FF
0x036F
0x03FF
0x2CFF
0x04FF
},
},
},
},
},
},
},
},
},
},
//
//
//
//
//
//
//
//
//
//
Basic Latin
Latin-1 Supplement
Latin Extended-A
Latin Extended-B
IPA Extensions
Spacing Modifier Letters
Combining Diacritical Marks
Greek and Coptic
Coptic
Cyrillic
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
{
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
'begin':
];
var MacStandardGlyphOrdering = [
'.notdef', '.null', 'nonmarkingreturn', 'space', 'exclam', 'quotedbl',
'numbersign', 'dollar', 'percent', 'ampersand', 'quotesingle', 'parenleft',
'parenright', 'asterisk', 'plus', 'comma', 'hyphen', 'period', 'slash',
'zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight',
var NormalizedUnicodes = {
'\u00A8': '\u0020\u0308',
'\u00AF': '\u0020\u0304',
'\u00B4': '\u0020\u0301',
'\u00B5': '\u03BC',
'\u00B8': '\u0020\u0327',
'\u0132': '\u0049\u004A',
'\u0133': '\u0069\u006A',
'\u013F': '\u004C\u00B7',
'\u0140': '\u006C\u00B7',
'\u0149': '\u02BC\u006E',
'\u017F': '\u0073',
'\u01C4': '\u0044\u017D',
'\u01C5': '\u0044\u017E',
'\u01C6': '\u0064\u017E',
'\u01C7': '\u004C\u004A',
'\u01C8': '\u004C\u006A',
'\u01C9': '\u006C\u006A',
'\u01CA': '\u004E\u004A',
'\u01CB': '\u004E\u006A',
'\u01CC': '\u006E\u006A',
'\u01F1': '\u0044\u005A',
'\u01F2': '\u0044\u007A',
'\u01F3': '\u0064\u007A',
'\u02D8': '\u0020\u0306',
'\u02D9': '\u0020\u0307',
'\u02DA': '\u0020\u030A',
'\u02DB': '\u0020\u0328',
'\u02DC': '\u0020\u0303',
'\u02DD': '\u0020\u030B',
'\u037A': '\u0020\u0345',
'\u0384': '\u0020\u0301',
'\u03D0': '\u03B2',
'\u03D1': '\u03B8',
'\u03D2': '\u03A5',
'\u03D5': '\u03C6',
'\u03D6': '\u03C0',
'\u03F0': '\u03BA',
'\u03F1': '\u03C1',
'\u03F2': '\u03C2',
'\u03F4': '\u0398',
'\u03F5': '\u03B5',
'\u03F9': '\u03A3',
'\u0587': '\u0565\u0582',
'\u0675': '\u0627\u0674',
'\u0676': '\u0648\u0674',
'\u0677': '\u06C7\u0674',
'\u0678': '\u064A\u0674',
'\u0E33': '\u0E4D\u0E32',
'\u0EB3': '\u0ECD\u0EB2',
'\u0EDC': '\u0EAB\u0E99',
'\u0EDD': '\u0EAB\u0EA1',
'\u0F77': '\u0FB2\u0F81',
'\u0F79': '\u0FB3\u0F81',
'\u1E9A': '\u0061\u02BE',
'\u1FBD': '\u0020\u0313',
'\u1FBF': '\u0020\u0313',
'\u1FC0': '\u0020\u0342',
'\u1FFE': '\u0020\u0314',
'\u2002': '\u0020',
'\u2003':
'\u2004':
'\u2005':
'\u2006':
'\u2008':
'\u2009':
'\u200A':
'\u2017':
'\u2024':
'\u2025':
'\u2026':
'\u2033':
'\u2034':
'\u2036':
'\u2037':
'\u203C':
'\u203E':
'\u2047':
'\u2048':
'\u2049':
'\u2057':
'\u205F':
'\u20A8':
'\u2100':
'\u2101':
'\u2103':
'\u2105':
'\u2106':
'\u2107':
'\u2109':
'\u2116':
'\u2121':
'\u2135':
'\u2136':
'\u2137':
'\u2138':
'\u213B':
'\u2160':
'\u2161':
'\u2162':
'\u2163':
'\u2164':
'\u2165':
'\u2166':
'\u2167':
'\u2168':
'\u2169':
'\u216A':
'\u216B':
'\u216C':
'\u216D':
'\u216E':
'\u216F':
'\u2170':
'\u2171':
'\u2172':
'\u2173':
'\u2174':
'\u2175':
'\u2176':
'\u0020',
'\u0020',
'\u0020',
'\u0020',
'\u0020',
'\u0020',
'\u0020',
'\u0020\u0333',
'\u002E',
'\u002E\u002E',
'\u002E\u002E\u002E',
'\u2032\u2032',
'\u2032\u2032\u2032',
'\u2035\u2035',
'\u2035\u2035\u2035',
'\u0021\u0021',
'\u0020\u0305',
'\u003F\u003F',
'\u003F\u0021',
'\u0021\u003F',
'\u2032\u2032\u2032\u2032',
'\u0020',
'\u0052\u0073',
'\u0061\u002F\u0063',
'\u0061\u002F\u0073',
'\u00B0\u0043',
'\u0063\u002F\u006F',
'\u0063\u002F\u0075',
'\u0190',
'\u00B0\u0046',
'\u004E\u006F',
'\u0054\u0045\u004C',
'\u05D0',
'\u05D1',
'\u05D2',
'\u05D3',
'\u0046\u0041\u0058',
'\u0049',
'\u0049\u0049',
'\u0049\u0049\u0049',
'\u0049\u0056',
'\u0056',
'\u0056\u0049',
'\u0056\u0049\u0049',
'\u0056\u0049\u0049\u0049',
'\u0049\u0058',
'\u0058',
'\u0058\u0049',
'\u0058\u0049\u0049',
'\u004C',
'\u0043',
'\u0044',
'\u004D',
'\u0069',
'\u0069\u0069',
'\u0069\u0069\u0069',
'\u0069\u0076',
'\u0076',
'\u0076\u0069',
'\u0076\u0069\u0069',
'\u2177':
'\u2178':
'\u2179':
'\u217A':
'\u217B':
'\u217C':
'\u217D':
'\u217E':
'\u217F':
'\u222C':
'\u222D':
'\u222F':
'\u2230':
'\u2474':
'\u2475':
'\u2476':
'\u2477':
'\u2478':
'\u2479':
'\u247A':
'\u247B':
'\u247C':
'\u247D':
'\u247E':
'\u247F':
'\u2480':
'\u2481':
'\u2482':
'\u2483':
'\u2484':
'\u2485':
'\u2486':
'\u2487':
'\u2488':
'\u2489':
'\u248A':
'\u248B':
'\u248C':
'\u248D':
'\u248E':
'\u248F':
'\u2490':
'\u2491':
'\u2492':
'\u2493':
'\u2494':
'\u2495':
'\u2496':
'\u2497':
'\u2498':
'\u2499':
'\u249A':
'\u249B':
'\u249C':
'\u249D':
'\u249E':
'\u249F':
'\u24A0':
'\u24A1':
'\u24A2':
'\u0076\u0069\u0069\u0069',
'\u0069\u0078',
'\u0078',
'\u0078\u0069',
'\u0078\u0069\u0069',
'\u006C',
'\u0063',
'\u0064',
'\u006D',
'\u222B\u222B',
'\u222B\u222B\u222B',
'\u222E\u222E',
'\u222E\u222E\u222E',
'\u0028\u0031\u0029',
'\u0028\u0032\u0029',
'\u0028\u0033\u0029',
'\u0028\u0034\u0029',
'\u0028\u0035\u0029',
'\u0028\u0036\u0029',
'\u0028\u0037\u0029',
'\u0028\u0038\u0029',
'\u0028\u0039\u0029',
'\u0028\u0031\u0030\u0029',
'\u0028\u0031\u0031\u0029',
'\u0028\u0031\u0032\u0029',
'\u0028\u0031\u0033\u0029',
'\u0028\u0031\u0034\u0029',
'\u0028\u0031\u0035\u0029',
'\u0028\u0031\u0036\u0029',
'\u0028\u0031\u0037\u0029',
'\u0028\u0031\u0038\u0029',
'\u0028\u0031\u0039\u0029',
'\u0028\u0032\u0030\u0029',
'\u0031\u002E',
'\u0032\u002E',
'\u0033\u002E',
'\u0034\u002E',
'\u0035\u002E',
'\u0036\u002E',
'\u0037\u002E',
'\u0038\u002E',
'\u0039\u002E',
'\u0031\u0030\u002E',
'\u0031\u0031\u002E',
'\u0031\u0032\u002E',
'\u0031\u0033\u002E',
'\u0031\u0034\u002E',
'\u0031\u0035\u002E',
'\u0031\u0036\u002E',
'\u0031\u0037\u002E',
'\u0031\u0038\u002E',
'\u0031\u0039\u002E',
'\u0032\u0030\u002E',
'\u0028\u0061\u0029',
'\u0028\u0062\u0029',
'\u0028\u0063\u0029',
'\u0028\u0064\u0029',
'\u0028\u0065\u0029',
'\u0028\u0066\u0029',
'\u0028\u0067\u0029',
'\u24A3':
'\u24A4':
'\u24A5':
'\u24A6':
'\u24A7':
'\u24A8':
'\u24A9':
'\u24AA':
'\u24AB':
'\u24AC':
'\u24AD':
'\u24AE':
'\u24AF':
'\u24B0':
'\u24B1':
'\u24B2':
'\u24B3':
'\u24B4':
'\u24B5':
'\u2A0C':
'\u2A74':
'\u2A75':
'\u2A76':
'\u2E9F':
'\u2EF3':
'\u2F00':
'\u2F01':
'\u2F02':
'\u2F03':
'\u2F04':
'\u2F05':
'\u2F06':
'\u2F07':
'\u2F08':
'\u2F09':
'\u2F0A':
'\u2F0B':
'\u2F0C':
'\u2F0D':
'\u2F0E':
'\u2F0F':
'\u2F10':
'\u2F11':
'\u2F12':
'\u2F13':
'\u2F14':
'\u2F15':
'\u2F16':
'\u2F17':
'\u2F18':
'\u2F19':
'\u2F1A':
'\u2F1B':
'\u2F1C':
'\u2F1D':
'\u2F1E':
'\u2F1F':
'\u2F20':
'\u2F21':
'\u2F22':
'\u0028\u0068\u0029',
'\u0028\u0069\u0029',
'\u0028\u006A\u0029',
'\u0028\u006B\u0029',
'\u0028\u006C\u0029',
'\u0028\u006D\u0029',
'\u0028\u006E\u0029',
'\u0028\u006F\u0029',
'\u0028\u0070\u0029',
'\u0028\u0071\u0029',
'\u0028\u0072\u0029',
'\u0028\u0073\u0029',
'\u0028\u0074\u0029',
'\u0028\u0075\u0029',
'\u0028\u0076\u0029',
'\u0028\u0077\u0029',
'\u0028\u0078\u0029',
'\u0028\u0079\u0029',
'\u0028\u007A\u0029',
'\u222B\u222B\u222B\u222B',
'\u003A\u003A\u003D',
'\u003D\u003D',
'\u003D\u003D\u003D',
'\u6BCD',
'\u9F9F',
'\u4E00',
'\u4E28',
'\u4E36',
'\u4E3F',
'\u4E59',
'\u4E85',
'\u4E8C',
'\u4EA0',
'\u4EBA',
'\u513F',
'\u5165',
'\u516B',
'\u5182',
'\u5196',
'\u51AB',
'\u51E0',
'\u51F5',
'\u5200',
'\u529B',
'\u52F9',
'\u5315',
'\u531A',
'\u5338',
'\u5341',
'\u535C',
'\u5369',
'\u5382',
'\u53B6',
'\u53C8',
'\u53E3',
'\u56D7',
'\u571F',
'\u58EB',
'\u5902',
'\u590A',
'\u2F23':
'\u2F24':
'\u2F25':
'\u2F26':
'\u2F27':
'\u2F28':
'\u2F29':
'\u2F2A':
'\u2F2B':
'\u2F2C':
'\u2F2D':
'\u2F2E':
'\u2F2F':
'\u2F30':
'\u2F31':
'\u2F32':
'\u2F33':
'\u2F34':
'\u2F35':
'\u2F36':
'\u2F37':
'\u2F38':
'\u2F39':
'\u2F3A':
'\u2F3B':
'\u2F3C':
'\u2F3D':
'\u2F3E':
'\u2F3F':
'\u2F40':
'\u2F41':
'\u2F42':
'\u2F43':
'\u2F44':
'\u2F45':
'\u2F46':
'\u2F47':
'\u2F48':
'\u2F49':
'\u2F4A':
'\u2F4B':
'\u2F4C':
'\u2F4D':
'\u2F4E':
'\u2F4F':
'\u2F50':
'\u2F51':
'\u2F52':
'\u2F53':
'\u2F54':
'\u2F55':
'\u2F56':
'\u2F57':
'\u2F58':
'\u2F59':
'\u2F5A':
'\u2F5B':
'\u2F5C':
'\u2F5D':
'\u2F5E':
'\u5915',
'\u5927',
'\u5973',
'\u5B50',
'\u5B80',
'\u5BF8',
'\u5C0F',
'\u5C22',
'\u5C38',
'\u5C6E',
'\u5C71',
'\u5DDB',
'\u5DE5',
'\u5DF1',
'\u5DFE',
'\u5E72',
'\u5E7A',
'\u5E7F',
'\u5EF4',
'\u5EFE',
'\u5F0B',
'\u5F13',
'\u5F50',
'\u5F61',
'\u5F73',
'\u5FC3',
'\u6208',
'\u6236',
'\u624B',
'\u652F',
'\u6534',
'\u6587',
'\u6597',
'\u65A4',
'\u65B9',
'\u65E0',
'\u65E5',
'\u66F0',
'\u6708',
'\u6728',
'\u6B20',
'\u6B62',
'\u6B79',
'\u6BB3',
'\u6BCB',
'\u6BD4',
'\u6BDB',
'\u6C0F',
'\u6C14',
'\u6C34',
'\u706B',
'\u722A',
'\u7236',
'\u723B',
'\u723F',
'\u7247',
'\u7259',
'\u725B',
'\u72AC',
'\u7384',
'\u2F5F':
'\u2F60':
'\u2F61':
'\u2F62':
'\u2F63':
'\u2F64':
'\u2F65':
'\u2F66':
'\u2F67':
'\u2F68':
'\u2F69':
'\u2F6A':
'\u2F6B':
'\u2F6C':
'\u2F6D':
'\u2F6E':
'\u2F6F':
'\u2F70':
'\u2F71':
'\u2F72':
'\u2F73':
'\u2F74':
'\u2F75':
'\u2F76':
'\u2F77':
'\u2F78':
'\u2F79':
'\u2F7A':
'\u2F7B':
'\u2F7C':
'\u2F7D':
'\u2F7E':
'\u2F7F':
'\u2F80':
'\u2F81':
'\u2F82':
'\u2F83':
'\u2F84':
'\u2F85':
'\u2F86':
'\u2F87':
'\u2F88':
'\u2F89':
'\u2F8A':
'\u2F8B':
'\u2F8C':
'\u2F8D':
'\u2F8E':
'\u2F8F':
'\u2F90':
'\u2F91':
'\u2F92':
'\u2F93':
'\u2F94':
'\u2F95':
'\u2F96':
'\u2F97':
'\u2F98':
'\u2F99':
'\u2F9A':
'\u7389',
'\u74DC',
'\u74E6',
'\u7518',
'\u751F',
'\u7528',
'\u7530',
'\u758B',
'\u7592',
'\u7676',
'\u767D',
'\u76AE',
'\u76BF',
'\u76EE',
'\u77DB',
'\u77E2',
'\u77F3',
'\u793A',
'\u79B8',
'\u79BE',
'\u7A74',
'\u7ACB',
'\u7AF9',
'\u7C73',
'\u7CF8',
'\u7F36',
'\u7F51',
'\u7F8A',
'\u7FBD',
'\u8001',
'\u800C',
'\u8012',
'\u8033',
'\u807F',
'\u8089',
'\u81E3',
'\u81EA',
'\u81F3',
'\u81FC',
'\u820C',
'\u821B',
'\u821F',
'\u826E',
'\u8272',
'\u8278',
'\u864D',
'\u866B',
'\u8840',
'\u884C',
'\u8863',
'\u897E',
'\u898B',
'\u89D2',
'\u8A00',
'\u8C37',
'\u8C46',
'\u8C55',
'\u8C78',
'\u8C9D',
'\u8D64',
'\u2F9B':
'\u2F9C':
'\u2F9D':
'\u2F9E':
'\u2F9F':
'\u2FA0':
'\u2FA1':
'\u2FA2':
'\u2FA3':
'\u2FA4':
'\u2FA5':
'\u2FA6':
'\u2FA7':
'\u2FA8':
'\u2FA9':
'\u2FAA':
'\u2FAB':
'\u2FAC':
'\u2FAD':
'\u2FAE':
'\u2FAF':
'\u2FB0':
'\u2FB1':
'\u2FB2':
'\u2FB3':
'\u2FB4':
'\u2FB5':
'\u2FB6':
'\u2FB7':
'\u2FB8':
'\u2FB9':
'\u2FBA':
'\u2FBB':
'\u2FBC':
'\u2FBD':
'\u2FBE':
'\u2FBF':
'\u2FC0':
'\u2FC1':
'\u2FC2':
'\u2FC3':
'\u2FC4':
'\u2FC5':
'\u2FC6':
'\u2FC7':
'\u2FC8':
'\u2FC9':
'\u2FCA':
'\u2FCB':
'\u2FCC':
'\u2FCD':
'\u2FCE':
'\u2FCF':
'\u2FD0':
'\u2FD1':
'\u2FD2':
'\u2FD3':
'\u2FD4':
'\u2FD5':
'\u3036':
'\u8D70',
'\u8DB3',
'\u8EAB',
'\u8ECA',
'\u8F9B',
'\u8FB0',
'\u8FB5',
'\u9091',
'\u9149',
'\u91C6',
'\u91CC',
'\u91D1',
'\u9577',
'\u9580',
'\u961C',
'\u96B6',
'\u96B9',
'\u96E8',
'\u9751',
'\u975E',
'\u9762',
'\u9769',
'\u97CB',
'\u97ED',
'\u97F3',
'\u9801',
'\u98A8',
'\u98DB',
'\u98DF',
'\u9996',
'\u9999',
'\u99AC',
'\u9AA8',
'\u9AD8',
'\u9ADF',
'\u9B25',
'\u9B2F',
'\u9B32',
'\u9B3C',
'\u9B5A',
'\u9CE5',
'\u9E75',
'\u9E7F',
'\u9EA5',
'\u9EBB',
'\u9EC3',
'\u9ECD',
'\u9ED1',
'\u9EF9',
'\u9EFD',
'\u9F0E',
'\u9F13',
'\u9F20',
'\u9F3B',
'\u9F4A',
'\u9F52',
'\u9F8D',
'\u9F9C',
'\u9FA0',
'\u3012',
'\u3038':
'\u3039':
'\u303A':
'\u309B':
'\u309C':
'\u3131':
'\u3132':
'\u3133':
'\u3134':
'\u3135':
'\u3136':
'\u3137':
'\u3138':
'\u3139':
'\u313A':
'\u313B':
'\u313C':
'\u313D':
'\u313E':
'\u313F':
'\u3140':
'\u3141':
'\u3142':
'\u3143':
'\u3144':
'\u3145':
'\u3146':
'\u3147':
'\u3148':
'\u3149':
'\u314A':
'\u314B':
'\u314C':
'\u314D':
'\u314E':
'\u314F':
'\u3150':
'\u3151':
'\u3152':
'\u3153':
'\u3154':
'\u3155':
'\u3156':
'\u3157':
'\u3158':
'\u3159':
'\u315A':
'\u315B':
'\u315C':
'\u315D':
'\u315E':
'\u315F':
'\u3160':
'\u3161':
'\u3162':
'\u3163':
'\u3164':
'\u3165':
'\u3166':
'\u3167':
'\u5341',
'\u5344',
'\u5345',
'\u0020\u3099',
'\u0020\u309A',
'\u1100',
'\u1101',
'\u11AA',
'\u1102',
'\u11AC',
'\u11AD',
'\u1103',
'\u1104',
'\u1105',
'\u11B0',
'\u11B1',
'\u11B2',
'\u11B3',
'\u11B4',
'\u11B5',
'\u111A',
'\u1106',
'\u1107',
'\u1108',
'\u1121',
'\u1109',
'\u110A',
'\u110B',
'\u110C',
'\u110D',
'\u110E',
'\u110F',
'\u1110',
'\u1111',
'\u1112',
'\u1161',
'\u1162',
'\u1163',
'\u1164',
'\u1165',
'\u1166',
'\u1167',
'\u1168',
'\u1169',
'\u116A',
'\u116B',
'\u116C',
'\u116D',
'\u116E',
'\u116F',
'\u1170',
'\u1171',
'\u1172',
'\u1173',
'\u1174',
'\u1175',
'\u1160',
'\u1114',
'\u1115',
'\u11C7',
'\u3168':
'\u3169':
'\u316A':
'\u316B':
'\u316C':
'\u316D':
'\u316E':
'\u316F':
'\u3170':
'\u3171':
'\u3172':
'\u3173':
'\u3174':
'\u3175':
'\u3176':
'\u3177':
'\u3178':
'\u3179':
'\u317A':
'\u317B':
'\u317C':
'\u317D':
'\u317E':
'\u317F':
'\u3180':
'\u3181':
'\u3182':
'\u3183':
'\u3184':
'\u3185':
'\u3186':
'\u3187':
'\u3188':
'\u3189':
'\u318A':
'\u318B':
'\u318C':
'\u318D':
'\u318E':
'\u3200':
'\u3201':
'\u3202':
'\u3203':
'\u3204':
'\u3205':
'\u3206':
'\u3207':
'\u3208':
'\u3209':
'\u320A':
'\u320B':
'\u320C':
'\u320D':
'\u320E':
'\u320F':
'\u3210':
'\u3211':
'\u3212':
'\u3213':
'\u3214':
'\u11C8',
'\u11CC',
'\u11CE',
'\u11D3',
'\u11D7',
'\u11D9',
'\u111C',
'\u11DD',
'\u11DF',
'\u111D',
'\u111E',
'\u1120',
'\u1122',
'\u1123',
'\u1127',
'\u1129',
'\u112B',
'\u112C',
'\u112D',
'\u112E',
'\u112F',
'\u1132',
'\u1136',
'\u1140',
'\u1147',
'\u114C',
'\u11F1',
'\u11F2',
'\u1157',
'\u1158',
'\u1159',
'\u1184',
'\u1185',
'\u1188',
'\u1191',
'\u1192',
'\u1194',
'\u119E',
'\u11A1',
'\u0028\u1100\u0029',
'\u0028\u1102\u0029',
'\u0028\u1103\u0029',
'\u0028\u1105\u0029',
'\u0028\u1106\u0029',
'\u0028\u1107\u0029',
'\u0028\u1109\u0029',
'\u0028\u110B\u0029',
'\u0028\u110C\u0029',
'\u0028\u110E\u0029',
'\u0028\u110F\u0029',
'\u0028\u1110\u0029',
'\u0028\u1111\u0029',
'\u0028\u1112\u0029',
'\u0028\u1100\u1161\u0029',
'\u0028\u1102\u1161\u0029',
'\u0028\u1103\u1161\u0029',
'\u0028\u1105\u1161\u0029',
'\u0028\u1106\u1161\u0029',
'\u0028\u1107\u1161\u0029',
'\u0028\u1109\u1161\u0029',
'\u3215':
'\u3216':
'\u3217':
'\u3218':
'\u3219':
'\u321A':
'\u321B':
'\u321C':
'\u321D':
'\u321E':
'\u3220':
'\u3221':
'\u3222':
'\u3223':
'\u3224':
'\u3225':
'\u3226':
'\u3227':
'\u3228':
'\u3229':
'\u322A':
'\u322B':
'\u322C':
'\u322D':
'\u322E':
'\u322F':
'\u3230':
'\u3231':
'\u3232':
'\u3233':
'\u3234':
'\u3235':
'\u3236':
'\u3237':
'\u3238':
'\u3239':
'\u323A':
'\u323B':
'\u323C':
'\u323D':
'\u323E':
'\u323F':
'\u3240':
'\u3241':
'\u3242':
'\u3243':
'\u32C0':
'\u32C1':
'\u32C2':
'\u32C3':
'\u32C4':
'\u32C5':
'\u32C6':
'\u32C7':
'\u32C8':
'\u32C9':
'\u32CA':
'\u32CB':
'\u3358':
'\u3359':
'\u0028\u110B\u1161\u0029',
'\u0028\u110C\u1161\u0029',
'\u0028\u110E\u1161\u0029',
'\u0028\u110F\u1161\u0029',
'\u0028\u1110\u1161\u0029',
'\u0028\u1111\u1161\u0029',
'\u0028\u1112\u1161\u0029',
'\u0028\u110C\u116E\u0029',
'\u0028\u110B\u1169\u110C\u1165\u11AB\u0029',
'\u0028\u110B\u1169\u1112\u116E\u0029',
'\u0028\u4E00\u0029',
'\u0028\u4E8C\u0029',
'\u0028\u4E09\u0029',
'\u0028\u56DB\u0029',
'\u0028\u4E94\u0029',
'\u0028\u516D\u0029',
'\u0028\u4E03\u0029',
'\u0028\u516B\u0029',
'\u0028\u4E5D\u0029',
'\u0028\u5341\u0029',
'\u0028\u6708\u0029',
'\u0028\u706B\u0029',
'\u0028\u6C34\u0029',
'\u0028\u6728\u0029',
'\u0028\u91D1\u0029',
'\u0028\u571F\u0029',
'\u0028\u65E5\u0029',
'\u0028\u682A\u0029',
'\u0028\u6709\u0029',
'\u0028\u793E\u0029',
'\u0028\u540D\u0029',
'\u0028\u7279\u0029',
'\u0028\u8CA1\u0029',
'\u0028\u795D\u0029',
'\u0028\u52B4\u0029',
'\u0028\u4EE3\u0029',
'\u0028\u547C\u0029',
'\u0028\u5B66\u0029',
'\u0028\u76E3\u0029',
'\u0028\u4F01\u0029',
'\u0028\u8CC7\u0029',
'\u0028\u5354\u0029',
'\u0028\u796D\u0029',
'\u0028\u4F11\u0029',
'\u0028\u81EA\u0029',
'\u0028\u81F3\u0029',
'\u0031\u6708',
'\u0032\u6708',
'\u0033\u6708',
'\u0034\u6708',
'\u0035\u6708',
'\u0036\u6708',
'\u0037\u6708',
'\u0038\u6708',
'\u0039\u6708',
'\u0031\u0030\u6708',
'\u0031\u0031\u6708',
'\u0031\u0032\u6708',
'\u0030\u70B9',
'\u0031\u70B9',
'\u335A':
'\u335B':
'\u335C':
'\u335D':
'\u335E':
'\u335F':
'\u3360':
'\u3361':
'\u3362':
'\u3363':
'\u3364':
'\u3365':
'\u3366':
'\u3367':
'\u3368':
'\u3369':
'\u336A':
'\u336B':
'\u336C':
'\u336D':
'\u336E':
'\u336F':
'\u3370':
'\u33E0':
'\u33E1':
'\u33E2':
'\u33E3':
'\u33E4':
'\u33E5':
'\u33E6':
'\u33E7':
'\u33E8':
'\u33E9':
'\u33EA':
'\u33EB':
'\u33EC':
'\u33ED':
'\u33EE':
'\u33EF':
'\u33F0':
'\u33F1':
'\u33F2':
'\u33F3':
'\u33F4':
'\u33F5':
'\u33F6':
'\u33F7':
'\u33F8':
'\u33F9':
'\u33FA':
'\u33FB':
'\u33FC':
'\u33FD':
'\u33FE':
'\uFB00':
'\uFB01':
'\uFB02':
'\uFB03':
'\uFB04':
'\uFB05':
'\u0032\u70B9',
'\u0033\u70B9',
'\u0034\u70B9',
'\u0035\u70B9',
'\u0036\u70B9',
'\u0037\u70B9',
'\u0038\u70B9',
'\u0039\u70B9',
'\u0031\u0030\u70B9',
'\u0031\u0031\u70B9',
'\u0031\u0032\u70B9',
'\u0031\u0033\u70B9',
'\u0031\u0034\u70B9',
'\u0031\u0035\u70B9',
'\u0031\u0036\u70B9',
'\u0031\u0037\u70B9',
'\u0031\u0038\u70B9',
'\u0031\u0039\u70B9',
'\u0032\u0030\u70B9',
'\u0032\u0031\u70B9',
'\u0032\u0032\u70B9',
'\u0032\u0033\u70B9',
'\u0032\u0034\u70B9',
'\u0031\u65E5',
'\u0032\u65E5',
'\u0033\u65E5',
'\u0034\u65E5',
'\u0035\u65E5',
'\u0036\u65E5',
'\u0037\u65E5',
'\u0038\u65E5',
'\u0039\u65E5',
'\u0031\u0030\u65E5',
'\u0031\u0031\u65E5',
'\u0031\u0032\u65E5',
'\u0031\u0033\u65E5',
'\u0031\u0034\u65E5',
'\u0031\u0035\u65E5',
'\u0031\u0036\u65E5',
'\u0031\u0037\u65E5',
'\u0031\u0038\u65E5',
'\u0031\u0039\u65E5',
'\u0032\u0030\u65E5',
'\u0032\u0031\u65E5',
'\u0032\u0032\u65E5',
'\u0032\u0033\u65E5',
'\u0032\u0034\u65E5',
'\u0032\u0035\u65E5',
'\u0032\u0036\u65E5',
'\u0032\u0037\u65E5',
'\u0032\u0038\u65E5',
'\u0032\u0039\u65E5',
'\u0033\u0030\u65E5',
'\u0033\u0031\u65E5',
'\u0066\u0066',
'\u0066\u0069',
'\u0066\u006C',
'\u0066\u0066\u0069',
'\u0066\u0066\u006C',
'\u017F\u0074',
'\uFB06':
'\uFB13':
'\uFB14':
'\uFB15':
'\uFB16':
'\uFB17':
'\uFB4F':
'\uFB50':
'\uFB51':
'\uFB52':
'\uFB53':
'\uFB54':
'\uFB55':
'\uFB56':
'\uFB57':
'\uFB58':
'\uFB59':
'\uFB5A':
'\uFB5B':
'\uFB5C':
'\uFB5D':
'\uFB5E':
'\uFB5F':
'\uFB60':
'\uFB61':
'\uFB62':
'\uFB63':
'\uFB64':
'\uFB65':
'\uFB66':
'\uFB67':
'\uFB68':
'\uFB69':
'\uFB6A':
'\uFB6B':
'\uFB6C':
'\uFB6D':
'\uFB6E':
'\uFB6F':
'\uFB70':
'\uFB71':
'\uFB72':
'\uFB73':
'\uFB74':
'\uFB75':
'\uFB76':
'\uFB77':
'\uFB78':
'\uFB79':
'\uFB7A':
'\uFB7B':
'\uFB7C':
'\uFB7D':
'\uFB7E':
'\uFB7F':
'\uFB80':
'\uFB81':
'\uFB82':
'\uFB83':
'\uFB84':
'\u0073\u0074',
'\u0574\u0576',
'\u0574\u0565',
'\u0574\u056B',
'\u057E\u0576',
'\u0574\u056D',
'\u05D0\u05DC',
'\u0671',
'\u0671',
'\u067B',
'\u067B',
'\u067B',
'\u067B',
'\u067E',
'\u067E',
'\u067E',
'\u067E',
'\u0680',
'\u0680',
'\u0680',
'\u0680',
'\u067A',
'\u067A',
'\u067A',
'\u067A',
'\u067F',
'\u067F',
'\u067F',
'\u067F',
'\u0679',
'\u0679',
'\u0679',
'\u0679',
'\u06A4',
'\u06A4',
'\u06A4',
'\u06A4',
'\u06A6',
'\u06A6',
'\u06A6',
'\u06A6',
'\u0684',
'\u0684',
'\u0684',
'\u0684',
'\u0683',
'\u0683',
'\u0683',
'\u0683',
'\u0686',
'\u0686',
'\u0686',
'\u0686',
'\u0687',
'\u0687',
'\u0687',
'\u0687',
'\u068D',
'\u068D',
'\u068C',
'\uFB85':
'\uFB86':
'\uFB87':
'\uFB88':
'\uFB89':
'\uFB8A':
'\uFB8B':
'\uFB8C':
'\uFB8D':
'\uFB8E':
'\uFB8F':
'\uFB90':
'\uFB91':
'\uFB92':
'\uFB93':
'\uFB94':
'\uFB95':
'\uFB96':
'\uFB97':
'\uFB98':
'\uFB99':
'\uFB9A':
'\uFB9B':
'\uFB9C':
'\uFB9D':
'\uFB9E':
'\uFB9F':
'\uFBA0':
'\uFBA1':
'\uFBA2':
'\uFBA3':
'\uFBA4':
'\uFBA5':
'\uFBA6':
'\uFBA7':
'\uFBA8':
'\uFBA9':
'\uFBAA':
'\uFBAB':
'\uFBAC':
'\uFBAD':
'\uFBAE':
'\uFBAF':
'\uFBB0':
'\uFBB1':
'\uFBD3':
'\uFBD4':
'\uFBD5':
'\uFBD6':
'\uFBD7':
'\uFBD8':
'\uFBD9':
'\uFBDA':
'\uFBDB':
'\uFBDC':
'\uFBDD':
'\uFBDE':
'\uFBDF':
'\uFBE0':
'\uFBE1':
'\u068C',
'\u068E',
'\u068E',
'\u0688',
'\u0688',
'\u0698',
'\u0698',
'\u0691',
'\u0691',
'\u06A9',
'\u06A9',
'\u06A9',
'\u06A9',
'\u06AF',
'\u06AF',
'\u06AF',
'\u06AF',
'\u06B3',
'\u06B3',
'\u06B3',
'\u06B3',
'\u06B1',
'\u06B1',
'\u06B1',
'\u06B1',
'\u06BA',
'\u06BA',
'\u06BB',
'\u06BB',
'\u06BB',
'\u06BB',
'\u06C0',
'\u06C0',
'\u06C1',
'\u06C1',
'\u06C1',
'\u06C1',
'\u06BE',
'\u06BE',
'\u06BE',
'\u06BE',
'\u06D2',
'\u06D2',
'\u06D3',
'\u06D3',
'\u06AD',
'\u06AD',
'\u06AD',
'\u06AD',
'\u06C7',
'\u06C7',
'\u06C6',
'\u06C6',
'\u06C8',
'\u06C8',
'\u0677',
'\u06CB',
'\u06CB',
'\u06C5',
'\u06C5',
'\uFBE2':
'\uFBE3':
'\uFBE4':
'\uFBE5':
'\uFBE6':
'\uFBE7':
'\uFBE8':
'\uFBE9':
'\uFBEA':
'\uFBEB':
'\uFBEC':
'\uFBED':
'\uFBEE':
'\uFBEF':
'\uFBF0':
'\uFBF1':
'\uFBF2':
'\uFBF3':
'\uFBF4':
'\uFBF5':
'\uFBF6':
'\uFBF7':
'\uFBF8':
'\uFBF9':
'\uFBFA':
'\uFBFB':
'\uFBFC':
'\uFBFD':
'\uFBFE':
'\uFBFF':
'\uFC00':
'\uFC01':
'\uFC02':
'\uFC03':
'\uFC04':
'\uFC05':
'\uFC06':
'\uFC07':
'\uFC08':
'\uFC09':
'\uFC0A':
'\uFC0B':
'\uFC0C':
'\uFC0D':
'\uFC0E':
'\uFC0F':
'\uFC10':
'\uFC11':
'\uFC12':
'\uFC13':
'\uFC14':
'\uFC15':
'\uFC16':
'\uFC17':
'\uFC18':
'\uFC19':
'\uFC1A':
'\uFC1B':
'\uFC1C':
'\uFC1D':
'\u06C9',
'\u06C9',
'\u06D0',
'\u06D0',
'\u06D0',
'\u06D0',
'\u0649',
'\u0649',
'\u0626\u0627',
'\u0626\u0627',
'\u0626\u06D5',
'\u0626\u06D5',
'\u0626\u0648',
'\u0626\u0648',
'\u0626\u06C7',
'\u0626\u06C7',
'\u0626\u06C6',
'\u0626\u06C6',
'\u0626\u06C8',
'\u0626\u06C8',
'\u0626\u06D0',
'\u0626\u06D0',
'\u0626\u06D0',
'\u0626\u0649',
'\u0626\u0649',
'\u0626\u0649',
'\u06CC',
'\u06CC',
'\u06CC',
'\u06CC',
'\u0626\u062C',
'\u0626\u062D',
'\u0626\u0645',
'\u0626\u0649',
'\u0626\u064A',
'\u0628\u062C',
'\u0628\u062D',
'\u0628\u062E',
'\u0628\u0645',
'\u0628\u0649',
'\u0628\u064A',
'\u062A\u062C',
'\u062A\u062D',
'\u062A\u062E',
'\u062A\u0645',
'\u062A\u0649',
'\u062A\u064A',
'\u062B\u062C',
'\u062B\u0645',
'\u062B\u0649',
'\u062B\u064A',
'\u062C\u062D',
'\u062C\u0645',
'\u062D\u062C',
'\u062D\u0645',
'\u062E\u062C',
'\u062E\u062D',
'\u062E\u0645',
'\u0633\u062C',
'\u0633\u062D',
'\uFC1E':
'\uFC1F':
'\uFC20':
'\uFC21':
'\uFC22':
'\uFC23':
'\uFC24':
'\uFC25':
'\uFC26':
'\uFC27':
'\uFC28':
'\uFC29':
'\uFC2A':
'\uFC2B':
'\uFC2C':
'\uFC2D':
'\uFC2E':
'\uFC2F':
'\uFC30':
'\uFC31':
'\uFC32':
'\uFC33':
'\uFC34':
'\uFC35':
'\uFC36':
'\uFC37':
'\uFC38':
'\uFC39':
'\uFC3A':
'\uFC3B':
'\uFC3C':
'\uFC3D':
'\uFC3E':
'\uFC3F':
'\uFC40':
'\uFC41':
'\uFC42':
'\uFC43':
'\uFC44':
'\uFC45':
'\uFC46':
'\uFC47':
'\uFC48':
'\uFC49':
'\uFC4A':
'\uFC4B':
'\uFC4C':
'\uFC4D':
'\uFC4E':
'\uFC4F':
'\uFC50':
'\uFC51':
'\uFC52':
'\uFC53':
'\uFC54':
'\uFC55':
'\uFC56':
'\uFC57':
'\uFC58':
'\uFC59':
'\u0633\u062E',
'\u0633\u0645',
'\u0635\u062D',
'\u0635\u0645',
'\u0636\u062C',
'\u0636\u062D',
'\u0636\u062E',
'\u0636\u0645',
'\u0637\u062D',
'\u0637\u0645',
'\u0638\u0645',
'\u0639\u062C',
'\u0639\u0645',
'\u063A\u062C',
'\u063A\u0645',
'\u0641\u062C',
'\u0641\u062D',
'\u0641\u062E',
'\u0641\u0645',
'\u0641\u0649',
'\u0641\u064A',
'\u0642\u062D',
'\u0642\u0645',
'\u0642\u0649',
'\u0642\u064A',
'\u0643\u0627',
'\u0643\u062C',
'\u0643\u062D',
'\u0643\u062E',
'\u0643\u0644',
'\u0643\u0645',
'\u0643\u0649',
'\u0643\u064A',
'\u0644\u062C',
'\u0644\u062D',
'\u0644\u062E',
'\u0644\u0645',
'\u0644\u0649',
'\u0644\u064A',
'\u0645\u062C',
'\u0645\u062D',
'\u0645\u062E',
'\u0645\u0645',
'\u0645\u0649',
'\u0645\u064A',
'\u0646\u062C',
'\u0646\u062D',
'\u0646\u062E',
'\u0646\u0645',
'\u0646\u0649',
'\u0646\u064A',
'\u0647\u062C',
'\u0647\u0645',
'\u0647\u0649',
'\u0647\u064A',
'\u064A\u062C',
'\u064A\u062D',
'\u064A\u062E',
'\u064A\u0645',
'\u064A\u0649',
'\uFC5A':
'\uFC5B':
'\uFC5C':
'\uFC5D':
'\uFC5E':
'\uFC5F':
'\uFC60':
'\uFC61':
'\uFC62':
'\uFC63':
'\uFC64':
'\uFC65':
'\uFC66':
'\uFC67':
'\uFC68':
'\uFC69':
'\uFC6A':
'\uFC6B':
'\uFC6C':
'\uFC6D':
'\uFC6E':
'\uFC6F':
'\uFC70':
'\uFC71':
'\uFC72':
'\uFC73':
'\uFC74':
'\uFC75':
'\uFC76':
'\uFC77':
'\uFC78':
'\uFC79':
'\uFC7A':
'\uFC7B':
'\uFC7C':
'\uFC7D':
'\uFC7E':
'\uFC7F':
'\uFC80':
'\uFC81':
'\uFC82':
'\uFC83':
'\uFC84':
'\uFC85':
'\uFC86':
'\uFC87':
'\uFC88':
'\uFC89':
'\uFC8A':
'\uFC8B':
'\uFC8C':
'\uFC8D':
'\uFC8E':
'\uFC8F':
'\uFC90':
'\uFC91':
'\uFC92':
'\uFC93':
'\uFC94':
'\uFC95':
'\u064A\u064A',
'\u0630\u0670',
'\u0631\u0670',
'\u0649\u0670',
'\u0020\u064C\u0651',
'\u0020\u064D\u0651',
'\u0020\u064E\u0651',
'\u0020\u064F\u0651',
'\u0020\u0650\u0651',
'\u0020\u0651\u0670',
'\u0626\u0631',
'\u0626\u0632',
'\u0626\u0645',
'\u0626\u0646',
'\u0626\u0649',
'\u0626\u064A',
'\u0628\u0631',
'\u0628\u0632',
'\u0628\u0645',
'\u0628\u0646',
'\u0628\u0649',
'\u0628\u064A',
'\u062A\u0631',
'\u062A\u0632',
'\u062A\u0645',
'\u062A\u0646',
'\u062A\u0649',
'\u062A\u064A',
'\u062B\u0631',
'\u062B\u0632',
'\u062B\u0645',
'\u062B\u0646',
'\u062B\u0649',
'\u062B\u064A',
'\u0641\u0649',
'\u0641\u064A',
'\u0642\u0649',
'\u0642\u064A',
'\u0643\u0627',
'\u0643\u0644',
'\u0643\u0645',
'\u0643\u0649',
'\u0643\u064A',
'\u0644\u0645',
'\u0644\u0649',
'\u0644\u064A',
'\u0645\u0627',
'\u0645\u0645',
'\u0646\u0631',
'\u0646\u0632',
'\u0646\u0645',
'\u0646\u0646',
'\u0646\u0649',
'\u0646\u064A',
'\u0649\u0670',
'\u064A\u0631',
'\u064A\u0632',
'\u064A\u0645',
'\u064A\u0646',
'\u064A\u0649',
'\uFC96':
'\uFC97':
'\uFC98':
'\uFC99':
'\uFC9A':
'\uFC9B':
'\uFC9C':
'\uFC9D':
'\uFC9E':
'\uFC9F':
'\uFCA0':
'\uFCA1':
'\uFCA2':
'\uFCA3':
'\uFCA4':
'\uFCA5':
'\uFCA6':
'\uFCA7':
'\uFCA8':
'\uFCA9':
'\uFCAA':
'\uFCAB':
'\uFCAC':
'\uFCAD':
'\uFCAE':
'\uFCAF':
'\uFCB0':
'\uFCB1':
'\uFCB2':
'\uFCB3':
'\uFCB4':
'\uFCB5':
'\uFCB6':
'\uFCB7':
'\uFCB8':
'\uFCB9':
'\uFCBA':
'\uFCBB':
'\uFCBC':
'\uFCBD':
'\uFCBE':
'\uFCBF':
'\uFCC0':
'\uFCC1':
'\uFCC2':
'\uFCC3':
'\uFCC4':
'\uFCC5':
'\uFCC6':
'\uFCC7':
'\uFCC8':
'\uFCC9':
'\uFCCA':
'\uFCCB':
'\uFCCC':
'\uFCCD':
'\uFCCE':
'\uFCCF':
'\uFCD0':
'\uFCD1':
'\u064A\u064A',
'\u0626\u062C',
'\u0626\u062D',
'\u0626\u062E',
'\u0626\u0645',
'\u0626\u0647',
'\u0628\u062C',
'\u0628\u062D',
'\u0628\u062E',
'\u0628\u0645',
'\u0628\u0647',
'\u062A\u062C',
'\u062A\u062D',
'\u062A\u062E',
'\u062A\u0645',
'\u062A\u0647',
'\u062B\u0645',
'\u062C\u062D',
'\u062C\u0645',
'\u062D\u062C',
'\u062D\u0645',
'\u062E\u062C',
'\u062E\u0645',
'\u0633\u062C',
'\u0633\u062D',
'\u0633\u062E',
'\u0633\u0645',
'\u0635\u062D',
'\u0635\u062E',
'\u0635\u0645',
'\u0636\u062C',
'\u0636\u062D',
'\u0636\u062E',
'\u0636\u0645',
'\u0637\u062D',
'\u0638\u0645',
'\u0639\u062C',
'\u0639\u0645',
'\u063A\u062C',
'\u063A\u0645',
'\u0641\u062C',
'\u0641\u062D',
'\u0641\u062E',
'\u0641\u0645',
'\u0642\u062D',
'\u0642\u0645',
'\u0643\u062C',
'\u0643\u062D',
'\u0643\u062E',
'\u0643\u0644',
'\u0643\u0645',
'\u0644\u062C',
'\u0644\u062D',
'\u0644\u062E',
'\u0644\u0645',
'\u0644\u0647',
'\u0645\u062C',
'\u0645\u062D',
'\u0645\u062E',
'\u0645\u0645',
'\uFCD2':
'\uFCD3':
'\uFCD4':
'\uFCD5':
'\uFCD6':
'\uFCD7':
'\uFCD8':
'\uFCD9':
'\uFCDA':
'\uFCDB':
'\uFCDC':
'\uFCDD':
'\uFCDE':
'\uFCDF':
'\uFCE0':
'\uFCE1':
'\uFCE2':
'\uFCE3':
'\uFCE4':
'\uFCE5':
'\uFCE6':
'\uFCE7':
'\uFCE8':
'\uFCE9':
'\uFCEA':
'\uFCEB':
'\uFCEC':
'\uFCED':
'\uFCEE':
'\uFCEF':
'\uFCF0':
'\uFCF1':
'\uFCF2':
'\uFCF3':
'\uFCF4':
'\uFCF5':
'\uFCF6':
'\uFCF7':
'\uFCF8':
'\uFCF9':
'\uFCFA':
'\uFCFB':
'\uFCFC':
'\uFCFD':
'\uFCFE':
'\uFCFF':
'\uFD00':
'\uFD01':
'\uFD02':
'\uFD03':
'\uFD04':
'\uFD05':
'\uFD06':
'\uFD07':
'\uFD08':
'\uFD09':
'\uFD0A':
'\uFD0B':
'\uFD0C':
'\uFD0D':
'\u0646\u062C',
'\u0646\u062D',
'\u0646\u062E',
'\u0646\u0645',
'\u0646\u0647',
'\u0647\u062C',
'\u0647\u0645',
'\u0647\u0670',
'\u064A\u062C',
'\u064A\u062D',
'\u064A\u062E',
'\u064A\u0645',
'\u064A\u0647',
'\u0626\u0645',
'\u0626\u0647',
'\u0628\u0645',
'\u0628\u0647',
'\u062A\u0645',
'\u062A\u0647',
'\u062B\u0645',
'\u062B\u0647',
'\u0633\u0645',
'\u0633\u0647',
'\u0634\u0645',
'\u0634\u0647',
'\u0643\u0644',
'\u0643\u0645',
'\u0644\u0645',
'\u0646\u0645',
'\u0646\u0647',
'\u064A\u0645',
'\u064A\u0647',
'\u0640\u064E\u0651',
'\u0640\u064F\u0651',
'\u0640\u0650\u0651',
'\u0637\u0649',
'\u0637\u064A',
'\u0639\u0649',
'\u0639\u064A',
'\u063A\u0649',
'\u063A\u064A',
'\u0633\u0649',
'\u0633\u064A',
'\u0634\u0649',
'\u0634\u064A',
'\u062D\u0649',
'\u062D\u064A',
'\u062C\u0649',
'\u062C\u064A',
'\u062E\u0649',
'\u062E\u064A',
'\u0635\u0649',
'\u0635\u064A',
'\u0636\u0649',
'\u0636\u064A',
'\u0634\u062C',
'\u0634\u062D',
'\u0634\u062E',
'\u0634\u0645',
'\u0634\u0631',
'\uFD0E':
'\uFD0F':
'\uFD10':
'\uFD11':
'\uFD12':
'\uFD13':
'\uFD14':
'\uFD15':
'\uFD16':
'\uFD17':
'\uFD18':
'\uFD19':
'\uFD1A':
'\uFD1B':
'\uFD1C':
'\uFD1D':
'\uFD1E':
'\uFD1F':
'\uFD20':
'\uFD21':
'\uFD22':
'\uFD23':
'\uFD24':
'\uFD25':
'\uFD26':
'\uFD27':
'\uFD28':
'\uFD29':
'\uFD2A':
'\uFD2B':
'\uFD2C':
'\uFD2D':
'\uFD2E':
'\uFD2F':
'\uFD30':
'\uFD31':
'\uFD32':
'\uFD33':
'\uFD34':
'\uFD35':
'\uFD36':
'\uFD37':
'\uFD38':
'\uFD39':
'\uFD3A':
'\uFD3B':
'\uFD3C':
'\uFD3D':
'\uFD50':
'\uFD51':
'\uFD52':
'\uFD53':
'\uFD54':
'\uFD55':
'\uFD56':
'\uFD57':
'\uFD58':
'\uFD59':
'\uFD5A':
'\uFD5B':
'\u0633\u0631',
'\u0635\u0631',
'\u0636\u0631',
'\u0637\u0649',
'\u0637\u064A',
'\u0639\u0649',
'\u0639\u064A',
'\u063A\u0649',
'\u063A\u064A',
'\u0633\u0649',
'\u0633\u064A',
'\u0634\u0649',
'\u0634\u064A',
'\u062D\u0649',
'\u062D\u064A',
'\u062C\u0649',
'\u062C\u064A',
'\u062E\u0649',
'\u062E\u064A',
'\u0635\u0649',
'\u0635\u064A',
'\u0636\u0649',
'\u0636\u064A',
'\u0634\u062C',
'\u0634\u062D',
'\u0634\u062E',
'\u0634\u0645',
'\u0634\u0631',
'\u0633\u0631',
'\u0635\u0631',
'\u0636\u0631',
'\u0634\u062C',
'\u0634\u062D',
'\u0634\u062E',
'\u0634\u0645',
'\u0633\u0647',
'\u0634\u0647',
'\u0637\u0645',
'\u0633\u062C',
'\u0633\u062D',
'\u0633\u062E',
'\u0634\u062C',
'\u0634\u062D',
'\u0634\u062E',
'\u0637\u0645',
'\u0638\u0645',
'\u0627\u064B',
'\u0627\u064B',
'\u062A\u062C\u0645',
'\u062A\u062D\u062C',
'\u062A\u062D\u062C',
'\u062A\u062D\u0645',
'\u062A\u062E\u0645',
'\u062A\u0645\u062C',
'\u062A\u0645\u062D',
'\u062A\u0645\u062E',
'\u062C\u0645\u062D',
'\u062C\u0645\u062D',
'\u062D\u0645\u064A',
'\u062D\u0645\u0649',
'\uFD5C':
'\uFD5D':
'\uFD5E':
'\uFD5F':
'\uFD60':
'\uFD61':
'\uFD62':
'\uFD63':
'\uFD64':
'\uFD65':
'\uFD66':
'\uFD67':
'\uFD68':
'\uFD69':
'\uFD6A':
'\uFD6B':
'\uFD6C':
'\uFD6D':
'\uFD6E':
'\uFD6F':
'\uFD70':
'\uFD71':
'\uFD72':
'\uFD73':
'\uFD74':
'\uFD75':
'\uFD76':
'\uFD77':
'\uFD78':
'\uFD79':
'\uFD7A':
'\uFD7B':
'\uFD7C':
'\uFD7D':
'\uFD7E':
'\uFD7F':
'\uFD80':
'\uFD81':
'\uFD82':
'\uFD83':
'\uFD84':
'\uFD85':
'\uFD86':
'\uFD87':
'\uFD88':
'\uFD89':
'\uFD8A':
'\uFD8B':
'\uFD8C':
'\uFD8D':
'\uFD8E':
'\uFD8F':
'\uFD92':
'\uFD93':
'\uFD94':
'\uFD95':
'\uFD96':
'\uFD97':
'\uFD98':
'\uFD99':
'\u0633\u062D\u062C',
'\u0633\u062C\u062D',
'\u0633\u062C\u0649',
'\u0633\u0645\u062D',
'\u0633\u0645\u062D',
'\u0633\u0645\u062C',
'\u0633\u0645\u0645',
'\u0633\u0645\u0645',
'\u0635\u062D\u062D',
'\u0635\u062D\u062D',
'\u0635\u0645\u0645',
'\u0634\u062D\u0645',
'\u0634\u062D\u0645',
'\u0634\u062C\u064A',
'\u0634\u0645\u062E',
'\u0634\u0645\u062E',
'\u0634\u0645\u0645',
'\u0634\u0645\u0645',
'\u0636\u062D\u0649',
'\u0636\u062E\u0645',
'\u0636\u062E\u0645',
'\u0637\u0645\u062D',
'\u0637\u0645\u062D',
'\u0637\u0645\u0645',
'\u0637\u0645\u064A',
'\u0639\u062C\u0645',
'\u0639\u0645\u0645',
'\u0639\u0645\u0645',
'\u0639\u0645\u0649',
'\u063A\u0645\u0645',
'\u063A\u0645\u064A',
'\u063A\u0645\u0649',
'\u0641\u062E\u0645',
'\u0641\u062E\u0645',
'\u0642\u0645\u062D',
'\u0642\u0645\u0645',
'\u0644\u062D\u0645',
'\u0644\u062D\u064A',
'\u0644\u062D\u0649',
'\u0644\u062C\u062C',
'\u0644\u062C\u062C',
'\u0644\u062E\u0645',
'\u0644\u062E\u0645',
'\u0644\u0645\u062D',
'\u0644\u0645\u062D',
'\u0645\u062D\u062C',
'\u0645\u062D\u0645',
'\u0645\u062D\u064A',
'\u0645\u062C\u062D',
'\u0645\u062C\u0645',
'\u0645\u062E\u062C',
'\u0645\u062E\u0645',
'\u0645\u062C\u062E',
'\u0647\u0645\u062C',
'\u0647\u0645\u0645',
'\u0646\u062D\u0645',
'\u0646\u062D\u0649',
'\u0646\u062C\u0645',
'\u0646\u062C\u0645',
'\u0646\u062C\u0649',
'\uFD9A':
'\uFD9B':
'\uFD9C':
'\uFD9D':
'\uFD9E':
'\uFD9F':
'\uFDA0':
'\uFDA1':
'\uFDA2':
'\uFDA3':
'\uFDA4':
'\uFDA5':
'\uFDA6':
'\uFDA7':
'\uFDA8':
'\uFDA9':
'\uFDAA':
'\uFDAB':
'\uFDAC':
'\uFDAD':
'\uFDAE':
'\uFDAF':
'\uFDB0':
'\uFDB1':
'\uFDB2':
'\uFDB3':
'\uFDB4':
'\uFDB5':
'\uFDB6':
'\uFDB7':
'\uFDB8':
'\uFDB9':
'\uFDBA':
'\uFDBB':
'\uFDBC':
'\uFDBD':
'\uFDBE':
'\uFDBF':
'\uFDC0':
'\uFDC1':
'\uFDC2':
'\uFDC3':
'\uFDC4':
'\uFDC5':
'\uFDC6':
'\uFDC7':
'\uFE49':
'\uFE4A':
'\uFE4B':
'\uFE4C':
'\uFE4D':
'\uFE4E':
'\uFE4F':
'\uFE80':
'\uFE81':
'\uFE82':
'\uFE83':
'\uFE84':
'\uFE85':
'\uFE86':
'\u0646\u0645\u064A',
'\u0646\u0645\u0649',
'\u064A\u0645\u0645',
'\u064A\u0645\u0645',
'\u0628\u062E\u064A',
'\u062A\u062C\u064A',
'\u062A\u062C\u0649',
'\u062A\u062E\u064A',
'\u062A\u062E\u0649',
'\u062A\u0645\u064A',
'\u062A\u0645\u0649',
'\u062C\u0645\u064A',
'\u062C\u062D\u0649',
'\u062C\u0645\u0649',
'\u0633\u062E\u0649',
'\u0635\u062D\u064A',
'\u0634\u062D\u064A',
'\u0636\u062D\u064A',
'\u0644\u062C\u064A',
'\u0644\u0645\u064A',
'\u064A\u062D\u064A',
'\u064A\u062C\u064A',
'\u064A\u0645\u064A',
'\u0645\u0645\u064A',
'\u0642\u0645\u064A',
'\u0646\u062D\u064A',
'\u0642\u0645\u062D',
'\u0644\u062D\u0645',
'\u0639\u0645\u064A',
'\u0643\u0645\u064A',
'\u0646\u062C\u062D',
'\u0645\u062E\u064A',
'\u0644\u062C\u0645',
'\u0643\u0645\u0645',
'\u0644\u062C\u0645',
'\u0646\u062C\u062D',
'\u062C\u062D\u064A',
'\u062D\u062C\u064A',
'\u0645\u062C\u064A',
'\u0641\u0645\u064A',
'\u0628\u062D\u064A',
'\u0643\u0645\u0645',
'\u0639\u062C\u0645',
'\u0635\u0645\u0645',
'\u0633\u062E\u064A',
'\u0646\u062C\u064A',
'\u203E',
'\u203E',
'\u203E',
'\u203E',
'\u005F',
'\u005F',
'\u005F',
'\u0621',
'\u0622',
'\u0622',
'\u0623',
'\u0623',
'\u0624',
'\u0624',
'\uFE87':
'\uFE88':
'\uFE89':
'\uFE8A':
'\uFE8B':
'\uFE8C':
'\uFE8D':
'\uFE8E':
'\uFE8F':
'\uFE90':
'\uFE91':
'\uFE92':
'\uFE93':
'\uFE94':
'\uFE95':
'\uFE96':
'\uFE97':
'\uFE98':
'\uFE99':
'\uFE9A':
'\uFE9B':
'\uFE9C':
'\uFE9D':
'\uFE9E':
'\uFE9F':
'\uFEA0':
'\uFEA1':
'\uFEA2':
'\uFEA3':
'\uFEA4':
'\uFEA5':
'\uFEA6':
'\uFEA7':
'\uFEA8':
'\uFEA9':
'\uFEAA':
'\uFEAB':
'\uFEAC':
'\uFEAD':
'\uFEAE':
'\uFEAF':
'\uFEB0':
'\uFEB1':
'\uFEB2':
'\uFEB3':
'\uFEB4':
'\uFEB5':
'\uFEB6':
'\uFEB7':
'\uFEB8':
'\uFEB9':
'\uFEBA':
'\uFEBB':
'\uFEBC':
'\uFEBD':
'\uFEBE':
'\uFEBF':
'\uFEC0':
'\uFEC1':
'\uFEC2':
'\u0625',
'\u0625',
'\u0626',
'\u0626',
'\u0626',
'\u0626',
'\u0627',
'\u0627',
'\u0628',
'\u0628',
'\u0628',
'\u0628',
'\u0629',
'\u0629',
'\u062A',
'\u062A',
'\u062A',
'\u062A',
'\u062B',
'\u062B',
'\u062B',
'\u062B',
'\u062C',
'\u062C',
'\u062C',
'\u062C',
'\u062D',
'\u062D',
'\u062D',
'\u062D',
'\u062E',
'\u062E',
'\u062E',
'\u062E',
'\u062F',
'\u062F',
'\u0630',
'\u0630',
'\u0631',
'\u0631',
'\u0632',
'\u0632',
'\u0633',
'\u0633',
'\u0633',
'\u0633',
'\u0634',
'\u0634',
'\u0634',
'\u0634',
'\u0635',
'\u0635',
'\u0635',
'\u0635',
'\u0636',
'\u0636',
'\u0636',
'\u0636',
'\u0637',
'\u0637',
'\uFEC3':
'\uFEC4':
'\uFEC5':
'\uFEC6':
'\uFEC7':
'\uFEC8':
'\uFEC9':
'\uFECA':
'\uFECB':
'\uFECC':
'\uFECD':
'\uFECE':
'\uFECF':
'\uFED0':
'\uFED1':
'\uFED2':
'\uFED3':
'\uFED4':
'\uFED5':
'\uFED6':
'\uFED7':
'\uFED8':
'\uFED9':
'\uFEDA':
'\uFEDB':
'\uFEDC':
'\uFEDD':
'\uFEDE':
'\uFEDF':
'\uFEE0':
'\uFEE1':
'\uFEE2':
'\uFEE3':
'\uFEE4':
'\uFEE5':
'\uFEE6':
'\uFEE7':
'\uFEE8':
'\uFEE9':
'\uFEEA':
'\uFEEB':
'\uFEEC':
'\uFEED':
'\uFEEE':
'\uFEEF':
'\uFEF0':
'\uFEF1':
'\uFEF2':
'\uFEF3':
'\uFEF4':
'\uFEF5':
'\uFEF6':
'\uFEF7':
'\uFEF8':
'\uFEF9':
'\uFEFA':
'\uFEFB':
'\uFEFC':
};
'\u0637',
'\u0637',
'\u0638',
'\u0638',
'\u0638',
'\u0638',
'\u0639',
'\u0639',
'\u0639',
'\u0639',
'\u063A',
'\u063A',
'\u063A',
'\u063A',
'\u0641',
'\u0641',
'\u0641',
'\u0641',
'\u0642',
'\u0642',
'\u0642',
'\u0642',
'\u0643',
'\u0643',
'\u0643',
'\u0643',
'\u0644',
'\u0644',
'\u0644',
'\u0644',
'\u0645',
'\u0645',
'\u0645',
'\u0645',
'\u0646',
'\u0646',
'\u0646',
'\u0646',
'\u0647',
'\u0647',
'\u0647',
'\u0647',
'\u0648',
'\u0648',
'\u0649',
'\u0649',
'\u064A',
'\u064A',
'\u064A',
'\u064A',
'\u0644\u0622',
'\u0644\u0622',
'\u0644\u0623',
'\u0644\u0623',
'\u0644\u0625',
'\u0644\u0625',
'\u0644\u0627',
'\u0644\u0627'
function reverseIfRtl(chars) {
var charsLength = chars.length;
//reverse an arabic ligature
if (charsLength <= 1 || !isRTLRangeFor(chars.charCodeAt(0)))
return chars;
var s = '';
for (var ii = charsLength - 1; ii >= 0; ii--)
s += chars[ii];
return s;
}
function fontCharsToUnicode(charCodes, font) {
var glyphs = font.charsToGlyphs(charCodes);
var result = '';
for (var i = 0, ii = glyphs.length; i < ii; i++) {
var glyph = glyphs[i];
if (!glyph)
continue;
var glyphUnicode = glyph.unicode;
if (glyphUnicode in NormalizedUnicodes)
glyphUnicode = NormalizedUnicodes[glyphUnicode];
result += reverseIfRtl(glyphUnicode);
}
return result;
}
/**
* 'Font' is the class the outside world should use, it encapsulate all the font
* decoding logics whatever type it is (assuming the font type is supported).
*
* For example to read a Type1 font and to attach it to the document:
* var type1Font = new Font("MyFontName", binaryFile, propertiesObject);
* type1Font.bind();
*/
var Font = (function FontClosure() {
function Font(name, file, properties) {
if (arguments.length === 1) {
// importing translated data
var data = arguments[0];
for (var i in data) {
this[i] = data[i];
}
return;
}
this.name = name;
this.loadedName = properties.loadedName;
this.coded = properties.coded;
this.loadCharProcs = properties.coded;
this.sizes = [];
var names = name.split('+');
names = names.length > 1 ? names[1] : names[0];
names = names.split(/[-,_]/g)[0];
this.isSerifFont = !!(properties.flags & FontFlags.Serif);
this.isSymbolicFont = !!(properties.flags & FontFlags.Symbolic);
this.isMonospace = !!(properties.flags & FontFlags.FixedPitch);
switch (type) {
case 'Type1':
case 'CIDFontType0':
this.mimetype = 'font/opentype';
var cff = (subtype == 'Type1C' || subtype == 'CIDFontType0C') ?
new CFFFont(file, properties) : new Type1Font(name, file, properties);
// Wrap the CFF data inside an OTF font file
data = this.convert(name, cff, properties);
break;
case 'TrueType':
case 'CIDFontType2':
this.mimetype = 'font/opentype';
// Repair the TrueType file. It is can be damaged in the point of
// view of the sanitizer
data = this.checkAndRepair(name, file, properties);
break;
default:
warn('Font ' + properties.type + ' is not supported');
break;
}
this.data = data;
this.fontMatrix = properties.fontMatrix;
this.widthMultiplier = !properties.fontMatrix ? 1.0 :
1.0 / properties.fontMatrix[0];
this.encoding = properties.baseEncoding;
this.loading = true;
};
var numFonts = 0;
function getUniqueName() {
return 'pdfFont' + numFonts++;
}
function stringToArray(str) {
var array = [];
for (var i = 0, ii = str.length; i < ii; ++i)
array[i] = str.charCodeAt(i);
return array;
};
function arrayToString(arr) {
var str = '';
for (var i = 0, ii = arr.length; i < ii; ++i)
str += String.fromCharCode(arr[i]);
return str;
};
function int16(bytes) {
return (bytes[0] << 8) + (bytes[1] & 0xff);
};
function int32(bytes) {
file.virtualOffset += header.length;
};
function createTableEntry(file, tag, data) {
// offset
var offset = file.virtualOffset;
// length
var length = data.length;
// Per spec tables must be 4-bytes align so add padding as needed
while (data.length & 3)
data.push(0x00);
while (file.virtualOffset & 3)
file.virtualOffset++;
// checksum
var checksum = 0, n = data.length;
for (var i = 0; i < n; i += 4)
checksum = (checksum + int32([data[i], data[i + 1], data[i + 2],
data[i + 3]])) | 0;
var tableEntry = (tag + string32(checksum) +
string32(offset) + string32(length));
file.file += tableEntry;
file.virtualOffset += data.length;
};
function getRanges(glyphs) {
// Array.sort() sorts by characters, not numerically, so convert to an
// array of characters.
var codes = [];
var length = glyphs.length;
for (var n = 0; n < length; ++n)
codes.push({ unicode: glyphs[n].unicode, code: n });
codes.sort(function fontGetRangesSort(a, b) {
return a.unicode - b.unicode;
});
// Split the sorted codes into ranges.
var ranges = [];
for (var n = 0; n < length; ) {
var start = codes[n].unicode;
var codeIndices = [codes[n].code];
++n;
var end = start;
while (n < length && end + 1 == codes[n].unicode) {
codeIndices.push(codes[n].code);
++end;
++n;
}
ranges.push([start, end, codeIndices]);
}
return ranges;
};
function createCMapTable(glyphs, deltas) {
var ranges = getRanges(glyphs);
var numTables = 1;
var cmap = '\x00\x00' + // version
string16(numTables) + // numTables
'\x00\x03' + // platformID
'\x00\x01' + // encodingID
string32(4 + numTables * 8); // start of the table record
var
var
var
var
var
var
ulUnicodeRange1
ulUnicodeRange2
ulUnicodeRange3
ulUnicodeRange4
=
=
=
=
0;
0;
0;
0;
string16(properties.italicAngle ? 1 : 0) + // fsSelection
string16(firstCharIndex ||
properties.firstChar) + // usFirstCharIndex
string16(lastCharIndex || properties.lastChar) + // usLastCharIndex
string16(typoAscent) + // sTypoAscender
string16(typoDescent) + // sTypoDescender
'\x00\x64' + // sTypoLineGap (7%-10% of the unitsPerEM value)
string16(winAscent) + // usWinAscent
string16(winDescent) + // usWinDescent
'\x00\x00\x00\x00' + // ulCodePageRange1 (Bits 0-31)
'\x00\x00\x00\x00' + // ulCodePageRange2 (Bits 32-63)
string16(properties.xHeight) + // sxHeight
string16(properties.capHeight) + // sCapHeight
string16(0) + // usDefaultChar
string16(firstCharIndex || properties.firstChar) + // usBreakChar
'\x00\x03'; // usMaxContext
};
function createPostTable(properties) {
var angle = Math.floor(properties.italicAngle * (Math.pow(2, 16)));
return '\x00\x03\x00\x00' + // Version number
string32(angle) + // italicAngle
'\x00\x00' + // underlinePosition
'\x00\x00' + // underlineThickness
string32(properties.fixedPitch) + // isFixedPitch
'\x00\x00\x00\x00' + // minMemType42
'\x00\x00\x00\x00' + // maxMemType42
'\x00\x00\x00\x00' + // minMemType1
'\x00\x00\x00\x00'; // maxMemType1
};
function createNameTable(name, proto) {
if (!proto) {
proto = [[], []]; // no strings and unicode strings
}
var strings =
proto[0][0]
proto[0][1]
proto[0][2]
proto[0][3]
proto[0][4]
proto[0][5]
proto[0][6]
proto[0][7]
proto[0][8]
proto[0][9]
];
[
||
||
||
||
||
||
||
||
||
||
'Original licence',
name,
'Unknown',
'uniqueID',
name,
'Version 0.11',
'',
'Unknown',
'Unknown',
'Unknown'
//
//
//
//
//
//
//
//
//
//
0.Copyright
1.Font family
2.Font subfamily (font weight)
3.Unique ID
4.Full font name
5.Version
6.Postscript name
7.Trademark
8.Manufacturer
9.Designer
var
var
var
var
platforms.length;
// format
// Number of names Record
// Storage
+ 1];
0 : 2) +
0 : 2);
glyph data
name: int16(font.getBytes(2)),
length: int16(font.getBytes(2)),
offset: int16(font.getBytes(2))
};
// using only Macintosh and Windows platform/encoding names
if ((r.platform == 1 && r.encoding == 0 && r.language == 0) ||
(r.platform == 3 && r.encoding == 1 && r.language == 0x409)) {
records.push(r);
}
}
for (var i = 0, ii = records.length; i < ii; i++) {
var record = records[i];
var pos = start + stringsStart + record.offset;
if (pos + record.length > end) {
continue; // outside of name table, ignoring
}
font.pos = pos;
var nameIndex = record.name;
var encoding = record.encoding ? 1 : 0;
if (record.encoding) {
// unicode
var str = '';
for (var j = 0, jj = record.length; j < jj; j += 2) {
str += String.fromCharCode(int16(font.getBytes(2)));
}
names[1][nameIndex] = str;
} else {
names[0][nameIndex] = bytesToString(font.getBytes(record.length));
}
}
return names;
}
function isOS2Valid(os2Table) {
var data = os2Table.data;
// usWinAscent == 0 makes font unreadable by windows
var usWinAscent = (data[74] << 8) | data[75];
if (usWinAscent == 0)
return false;
return true;
}
var TTOpsStackDeltas = [
0, 0, 0, 0, 0, 0, 0, 0, -2, -2, -2, -2, 0, 0, -2, -5,
-1, -1, -1, -1, -1, -1, -1, -1, 0, 0, -1, 0, -1, -1, -1, -1,
1, -1, -999, 0, 1, 0, 0, -2, 0, -1, -2, -1, -999, -999, -1, -1,
0, 0, -999, -999, -1, -1, -1, -1, -2, -999, -2, -2, -2, 0, -2, -2,
0, 0, -2, 0, -2, 0, 0, 0, -2, -1, -1, 1, 1, 0, 0, -1,
-1, -1, -1, -1, -1, -1, 0, 0, -1, 0, -1, -1, 0, -999, -1, -1,
-1, -1, -1, -1, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, 0,
-2, -999, -999, -999, -999, -999, -1, -1, -2, -2, 0, 0, 0, 0, -1, -1,
-999, -2, -2, 0, 0, -1, -2, -2, 0, -999, 0, 0, 0, -1, -2];
// 0xC0-DF == -1 and 0xE0-FF == -2
function sanitizeTTProgram(table, ttContext) {
var data = table.data;
var i = 0, n, lastEndf = 0, lastDeff = 0;
var stack = [];
var tooComplexToFollowFunctions =
ttContext.tooComplexToFollowFunctions;
for (var ii = data.length; i < ii;) {
var op = data[i++];
// The TrueType instruction set docs can be found at
// https://developer.apple.com/fonts/TTRefMan/RM05/Chap5.html
if (op === 0x40) { // NPUSHB - pushes n bytes
n = data[i++];
for (var j = 0; j < n; j++) {
stack.push(data[i++]);
}
} else if (op === 0x41) { // NPUSHW - pushes n words
n = data[i++];
for (var j = 0; j < n; j++) {
var b = data[i++];
stack.push((b << 8) | data[i++]);
}
} else if ((op & 0xF8) === 0xB0) { // PUSHB - pushes bytes
n = op - 0xB0 + 1;
for (var j = 0; j < n; j++) {
stack.push(data[i++]);
}
} else if ((op & 0xF8) === 0xB8) { // PUSHW - pushes words
n = op - 0xB8 + 1;
for (var j = 0; j < n; j++) {
var b = data[i++];
stack.push((b << 8) | data[i++]);
}
} else if (op === 0x2B && !tooComplexToFollowFunctions) { // CALL
// collecting inforamtion about which functions are used
var funcId = stack[stack.length - 1];
ttContext.functionsUsed[funcId] = true;
if (i >= 2 && data[i - 2] === 0x2B) {
// all data in stack, calls are performed in sequence
tooComplexToFollowFunctions = true;
}
} else if (op === 0x2C && !tooComplexToFollowFunctions) { // FDEF
// collecting inforamtion about which functions are defined
lastDeff = i;
var funcId = stack[stack.length - 1];
ttContext.functionsDefined[funcId] = true;
if (i >= 2 && data[i - 2] === 0x2D) {
// all function ids in stack, FDEF/ENDF perfomed in sequence
tooComplexToFollowFunctions = true;
}
} else if (op === 0x2D) { // ENDF - end of function
lastEndf = i;
} else if (op === 0x89) { // IDEF - instruction definition
// recording it as a function to track ENDF
lastDeff = i;
}
// Adjusting stack not extactly, but just enough to get function id
var stackDelta = op <= 0x8E ? TTOpsStackDeltas[op] :
op >= 0xC0 && op <= 0xDF ? -1 : op >= 0xE0 ? -2 : 0;
while (stackDelta < 0 && stack.length > 0) {
stack.pop();
stackDelta++;
}
while (stackDelta > 0) {
stack.push(NaN); // pushing any number into stack
stackDelta--;
}
}
ttContext.tooComplexToFollowFunctions = tooComplexToFollowFunctions;
var content = [data];
if (i > data.length) {
content.push(new Uint8Array(i - data.length));
}
if (lastDeff > lastEndf) {
// new function definition started, but not finished
// complete function by [CLEAR, ENDF]
content.push(new Uint8Array([0x22, 0x2D]));
}
if (ttContext.defineMissingFunctions && !tooComplexToFollowFunctions) {
for (var j = 0, jj = ttContext.functionsUsed.length; j < jj; j++) {
if (!ttContext.functionsUsed[j] || ttContext.functionsDefined[j]) {
continue;
}
// function is used, but not defined
// creating empty one [PUSHB, function-id, FDEF, ENDF]
content.push(new Uint8Array([0xB0, j, 0x2C, 0x2D]));
}
}
if (content.length > 1) {
// concatenating the content items
var newLength = 0;
for (var j = 0, jj = content.length; j < jj; j++) {
newLength += content[j].length;
}
newLength = (newLength + 3) & ~3;
var result = new Uint8Array(newLength);
var pos = 0;
for (var j = 0, jj = content.length; j < jj; j++) {
result.set(content[j], pos);
pos += content[j].length;
}
table.data = result;
table.length = newLength;
}
}
function sanitizeTTPrograms(fpgm, prep) {
var ttContext = {
functionsDefined: [],
functionsUsed: [],
tooComplexToFollowFunctions: false
};
if (prep) {
// collecting prep functions info first
sanitizeTTProgram(prep, ttContext);
}
if (fpgm) {
ttContext.defineMissingFunctions = true;
sanitizeTTProgram(fpgm, ttContext);
}
}
// Check that required tables are present
var requiredTables = ['OS/2', 'cmap', 'head', 'hhea',
'hmtx', 'maxp', 'name', 'post'];
os2 = null;
}
// Ensure the hmtx table contains the advance width and
// sidebearings information for numGlyphs in the maxp table
font.pos = (font.start || 0) + maxp.offset;
var version = int16(font.getBytes(4));
var numGlyphs = int16(font.getBytes(2));
sanitizeMetrics(font, hhea, hmtx, numGlyphs);
sanitizeTTPrograms(fpgm, prep);
var isGlyphLocationsLong = int16([head.data[50], head.data[51]]);
if (head && loca && glyf) {
sanitizeGlyphLocations(loca, glyf, numGlyphs, isGlyphLocationsLong);
}
var emptyGlyphIds = [];
if (glyf)
findEmptyGlyphs(loca, isGlyphLocationsLong, emptyGlyphIds);
// Sanitizer reduces the glyph advanceWidth to the maxAdvanceWidth
// Sometimes it's 0. That needs to be fixed
if (hhea.data[10] == 0 && hhea.data[11] == 0) {
hhea.data[10] = 0xFF;
hhea.data[11] = 0xFF;
}
// The 'post' table has glyphs names.
if (post) {
var valid = readPostScriptTable(post, properties, numGlyphs);
if (!valid) {
tables.splice(tables.indexOf(post), 1);
post = null;
}
}
var glyphs, ids;
if (properties.type == 'CIDFontType2') {
// Replace the old CMAP table with a shiny new one
// Type2 composite fonts map characters directly to glyphs so the cmap
// table must be replaced.
// canvas fillText will reencode some characters even if the font has a
// glyph at that position - e.g. newline is converted to a space and
// U+00AD (soft hyphen) is not drawn.
// So, offset all the glyphs by 0xFF to avoid these cases and use
// the encoding to map incoming characters to the new glyph positions
if (!cmap) {
cmap = {
tag: 'cmap',
data: null
};
tables.push(cmap);
}
var cidToGidMap = properties.cidToGidMap || [];
var gidToCidMap = [0];
if (cidToGidMap.length > 0) {
for (var j = cidToGidMap.length - 1; j >= 0; j--) {
font
= 0;
i < ii; i++) {
unicode);
unicode);
// high byte must be the same for min and max unicodes
if ((maxUnicode & 0xFF00) != (minUnicode & 0xFF00))
this.isSymbolicFont = false;
}
// heuristics: if removed more than 5 glyphs encoding WinAnsiEncoding
// does not set properly (broken PDFs have about 100 removed glyphs)
if (glyphsRemoved > 5) {
warn('Switching TrueType encoding to MacRomanEncoding for ' +
this.name + ' font');
encoding = Encodings.MacRomanEncoding;
}
if (hasShortCmap && this.hasEncoding && !this.isSymbolicFont) {
// Re-encode short map encoding to unicode -- that simplifies the
// resolution of MacRoman encoded glyphs logic for TrueType fonts:
// copying all characters to private use area, all mapping all known
// glyphs to the unicodes. The glyphs and ids arrays will grow.
var usedUnicodes = [];
for (var i = 0, ii = glyphs.length; i < ii; i++) {
var code = glyphs[i].unicode;
var gid = ids[i];
glyphs[i].unicode += CMAP_GLYPH_OFFSET;
toFontChar[code] = glyphs[i].unicode;
var glyphName
if (glyphName
var unicode
if (unicode
continue;
= glyphNames[gid] || encoding[code];
in GlyphsUnicode) {
= GlyphsUnicode[glyphName];
in usedUnicodes)
usedUnicodes[unicode] = true;
glyphs.push({
unicode: unicode,
code: glyphs[i].code
});
ids.push(gid);
toFontChar[code] = unicode;
}
}
this.useToFontChar = true;
} else if (!this.isSymbolicFont && (this.hasEncoding ||
properties.glyphNames || differences.length > 0)) {
// Re-encode cmap encoding to unicode, based on the 'post' table data
// diffrence array or base encoding
var reverseMap = [];
for (var i = 0, ii = glyphs.length; i < ii; i++)
reverseMap[glyphs[i].unicode] = i;
var newGlyphUnicodes = [];
for (var i = 0, ii = glyphs.length; i < ii; i++) {
var code = glyphs[i].unicode;
var changeCode = false;
var gid = ids[i];
var glyphName = glyphNames[gid];
if (!glyphName) {
glyphName = differences[code] || encoding[code];
changeCode = true;
}
if (glyphName in GlyphsUnicode) {
var unicode = GlyphsUnicode[glyphName];
if (!unicode || reverseMap[unicode] === i)
continue; // unknown glyph name or in its own place
newGlyphUnicodes[i] = unicode;
if (changeCode)
toFontChar[code] = unicode;
delete reverseMap[code];
}
}
for (var index in newGlyphUnicodes) {
if (newGlyphUnicodes.hasOwnProperty(index)) {
var unicode = newGlyphUnicodes[index];
if (reverseMap[unicode]) {
// avoiding assigning to the same unicode
glyphs[index].unicode = unusedUnicode++;
continue;
}
glyphs[index].unicode = unicode;
reverseMap[unicode] = index;
}
}
this.useToFontChar = true;
}
// Moving all symbolic font glyphs into 0xF000 - 0xF0FF range.
if (this.isSymbolicFont) {
for (var i = 0, ii = glyphs.length; i < ii; i++) {
var code = glyphs[i].unicode & 0xFF;
var fontCharCode = SYMBOLIC_FONT_GLYPH_OFFSET | code;
glyphs[i].unicode = toFontChar[code] = fontCharCode;
}
this.useToFontChar = true;
}
createGlyphNameMap(glyphs, ids, properties);
this.glyphNameMap = properties.glyphNameMap;
}
if (glyphs.length === 0) {
// defines at least one glyph
glyphs.push({ unicode: 0xF000, code: 0xF000, glyph: '.notdef' });
ids.push(0);
}
// Converting glyphs and ids into font's cmap table
cmap.data = createCMapTable(glyphs, ids);
var unicodeIsEnabled = [];
for (var i = 0, ii = glyphs.length; i < ii; i++) {
unicodeIsEnabled[glyphs[i].unicode] = true;
}
this.unicodeIsEnabled = unicodeIsEnabled;
if (os2 && !validateOS2Table(os2)) {
tables.splice(tables.indexOf(os2), 1);
os2 = null;
}
if (!os2) {
// extract some more font properties from the OpenType head and
// hhea tables; yMin and descent value are always negative
var override = {
unitsPerEm: int16([head.data[18], head.data[19]]),
yMax: int16([head.data[42], head.data[43]]),
yMin: int16([head.data[38], head.data[39]]) - 0x10000,
ascent: int16([hhea.data[4], hhea.data[5]]),
descent: int16([hhea.data[6], hhea.data[7]]) - 0x10000
};
tables.push({
tag: 'OS/2',
data: stringToArray(createOS2Table(properties, glyphs, override))
});
}
// Rewrite the 'post' table if needed
if (!post) {
tables.push({
tag: 'post',
data: stringToArray(createPostTable(properties))
});
}
// Re-creating 'name' table
if (requiredTables.indexOf('name') != -1) {
tables.push({
tag: 'name',
data: stringToArray(createNameTable(this.name))
});
} else {
// ... using existing 'name' table as prototype
for (var i = 0, ii = tables.length; i < ii; i++) {
var table = tables[i];
if (table.tag === 'name') {
var namePrototype = readNameTable(table);
table.data = stringToArray(createNameTable(name, namePrototype));
break;
}
}
}
// Tables needs to be written by ascendant alphabetic order
tables.sort(function tables_sort(a, b) {
return (a.tag > b.tag) - (a.tag < b.tag);
});
// rewrite the tables but tweak offsets
for (var i = 0, ii = tables.length; i < ii; i++) {
var table = tables[i];
var data = [];
var tableData = table.data;
for (var j = 0, jj = tableData.length; j < jj; j++)
data.push(tableData[j]);
createTableEntry(ttf, table.tag, data);
}
// Add the table datas
for (var i = 0, ii = tables.length; i < ii; i++) {
}
var unitsPerEm = properties.unitsPerEm || 1000; // defaulting to 1000
var fields = {
// PostScript Font Program
'CFF ': font.data,
// OS/2 and Windows Specific metrics
'OS/2': stringToArray(createOS2Table(properties, charstrings)),
// Character to glyphs mapping
'cmap': createCMapTable(charstrings.slice(),
('glyphIds' in font) ? font.glyphIds : null),
// Font header
'head': (function fontFieldsHead() {
return stringToArray(
'\x00\x01\x00\x00' + // Version number
'\x00\x00\x10\x00' + // fontRevision
'\x00\x00\x00\x00' + // checksumAdjustement
'\x5F\x0F\x3C\xF5' + // magicNumber
'\x00\x00' + // Flags
safeString16(unitsPerEm) + // unitsPerEM
'\x00\x00\x00\x00\x9e\x0b\x7e\x27' + // creation date
'\x00\x00\x00\x00\x9e\x0b\x7e\x27' + // modifification date
'\x00\x00' + // xMin
safeString16(properties.descent) + // yMin
'\x0F\xFF' + // xMax
safeString16(properties.ascent) + // yMax
string16(properties.italicAngle ? 2 : 0) + // macStyle
'\x00\x11' + // lowestRecPPEM
'\x00\x00' + // fontDirectionHint
'\x00\x00' + // indexToLocFormat
'\x00\x00'); // glyphDataFormat
})(),
// Horizontal header
'hhea': (function fontFieldsHhea() {
return stringToArray(
'\x00\x01\x00\x00' + // Version number
safeString16(properties.ascent) + // Typographic Ascent
safeString16(properties.descent) + // Typographic Descent
'\x00\x00' + // Line Gap
'\xFF\xFF' + // advanceWidthMax
'\x00\x00' + // minLeftSidebearing
'\x00\x00' + // minRightSidebearing
'\x00\x00' + // xMaxExtent
safeString16(properties.capHeight) + // caretSlopeRise
safeString16(Math.tan(properties.italicAngle) *
properties.xHeight) + // caretSlopeRun
'\x00\x00' + // caretOffset
'\x00\x00' + // -reserved'\x00\x00' + // -reserved'\x00\x00' + // -reserved'\x00\x00' + // -reserved'\x00\x00' + // metricDataFormat
string16(charstrings.length + 1)); // Number of HMetrics
})(),
// Horizontal metrics
charcode = this.toUnicode.indexOf(glyphUnicode);
// setting it to unicode if negative or undefined
if (!(charcode > 0))
charcode = glyphUnicode;
// trying to get width via charcode
width = this.widths[charcode];
if (width)
break; // the non-zero width found
}
width = (width || this.defaultWidth) * this.widthMultiplier;
// Do not shadow the property here. See discussion:
// https://github.com/mozilla/pdf.js/pull/2127#discussion_r1662280
this._shadowWidth = width;
return width;
},
charToGlyph: function Font_charToGlyph(charcode) {
var fontCharCode, width, operatorList, disabled;
var width = this.widths[charcode];
switch (this.type) {
case 'CIDFontType0':
if (this.noUnicodeAdaptation) {
width = this.widths[this.unicodeToCID[charcode] || charcode];
}
fontCharCode = this.toFontChar[charcode] || charcode;
break;
case 'CIDFontType2':
if (this.noUnicodeAdaptation) {
width = this.widths[this.unicodeToCID[charcode] || charcode];
}
fontCharCode = this.toFontChar[charcode] || charcode;
break;
case 'Type1':
var glyphName = this.differences[charcode] || this.encoding[charcode];
if (!isNum(width))
width = this.widths[glyphName];
if (this.noUnicodeAdaptation) {
fontCharCode = mapPrivateUseChars(GlyphsUnicode[glyphName] ||
charcode);
break;
}
fontCharCode = this.glyphNameMap[glyphName] ||
GlyphsUnicode[glyphName] || charcode;
break;
case 'Type3':
var glyphName = this.differences[charcode] || this.encoding[charcode];
operatorList = this.charProcOperatorList[glyphName];
fontCharCode = charcode;
break;
case 'TrueType':
if (this.useToFontChar) {
fontCharCode = this.toFontChar[charcode] || charcode;
break;
}
var glyphName = this.differences[charcode] || this.encoding[charcode];
if (!glyphName)
glyphName = Encodings.StandardEncoding[charcode];
if (!isNum(width))
width = this.widths[glyphName];
if (this.noUnicodeAdaptation) {
fontCharCode = GlyphsUnicode[glyphName] || charcode;
break;
}
if (!this.hasEncoding || this.isSymbolicFont) {
fontCharCode = this.useToFontChar ? this.toFontChar[charcode] :
charcode;
break;
}
// MacRoman encoding address by re-encoding the cmap table
fontCharCode = glyphName in this.glyphNameMap ?
this.glyphNameMap[glyphName] : GlyphsUnicode[glyphName];
break;
default:
warn('Unsupported font type: ' + this.type);
break;
}
var unicodeChars = !('toUnicode' in this) ? charcode :
this.toUnicode[charcode] || charcode;
if (typeof unicodeChars === 'number')
unicodeChars = String.fromCharCode(unicodeChars);
width = (isNum(width) ? width : this.defaultWidth) * this.widthMultiplier;
disabled = this.unicodeIsEnabled ?
!this.unicodeIsEnabled[fontCharCode] : false;
return {
fontChar: String.fromCharCode(fontCharCode),
unicode: unicodeChars,
width: width,
disabled: disabled,
operatorList: operatorList
};
},
charsToGlyphs: function Font_charsToGlyphs(chars) {
var charsCache = this.charsCache;
var glyphs;
// if we translated this string before, just grab it from the cache
if (charsCache) {
glyphs = charsCache[chars];
if (glyphs)
return glyphs;
}
// lazily create the translation cache
if (!charsCache)
charsCache = this.charsCache = Object.create(null);
glyphs = [];
var charsCacheKey = chars;
var converter;
var cidEncoding = this.cidEncoding;
if (cidEncoding) {
converter = CMapConverterList[cidEncoding];
if (converter) {
chars = converter(chars);
} else if (cidEncoding.indexOf('Uni') !== 0 &&
cidEncoding.indexOf('Identity-') !== 0) {
warn('Unsupported CMap: ' + cidEncoding);
}
}
if (!converter && this.wideChars) {
// composite fonts have multi-byte strings convert the string from
// single-byte to multi-byte
// XXX assuming CIDFonts are two-byte - later need to extract the
// correct byte encoding according to the PDF spec
var length = chars.length - 1; // looping over two bytes at a time so
// loop should never end on the last byte
for (var i = 0; i < length; i++) {
var charcode = int16([chars.charCodeAt(i++), chars.charCodeAt(i)]);
var glyph = this.charToGlyph(charcode);
glyphs.push(glyph);
// placing null after each word break charcode (ASCII SPACE)
if (charcode == 0x20)
glyphs.push(null);
}
}
else {
for (var i = 0, ii = chars.length; i < ii; ++i) {
var charcode = chars.charCodeAt(i);
var glyph = this.charToGlyph(charcode);
glyphs.push(glyph);
if (charcode == 0x20)
glyphs.push(null);
}
}
// Enter the translated string into the cache
return (charsCache[charsCacheKey] = glyphs);
}
};
return Font;
})();
var ErrorFont = (function ErrorFontClosure() {
function ErrorFont(error) {
this.error = error;
}
ErrorFont.prototype = {
charsToGlyphs: function ErrorFont_charsToGlyphs() {
return [];
},
exportData: function ErrorFont_exportData() {
return {error: this.error};
}
};
return ErrorFont;
})();
var CallothersubrCmd = (function CallothersubrCmdClosure() {
function CallothersubrCmd(index) {
this.index = index;
}
return CallothersubrCmd;
})();
/*
* Type1Parser encapsulate the needed code for parsing a Type1 font
* program. Some of its logic depends on the Type2 charstrings
* structure.
*/
var Type1Parser = function type1Parser() {
/*
* Decrypt a Sequence of Ciphertext Bytes to Produce the Original Sequence
* of Plaintext Bytes. The function took a key as a parameter which can be
* for decrypting the eexec block of for decoding charStrings.
*/
var EEXEC_ENCRYPT_KEY = 55665;
var CHAR_STRS_ENCRYPT_KEY = 4330;
function decrypt(stream, key, discardNumber) {
var r = key, c1 = 52845, c2 = 22719;
var decryptedString = [];
var value = '';
var count = stream.length;
for (var i = 0; i < count; i++) {
value = stream[i];
decryptedString[i] = value ^ (r >> 8);
r = ((value + r) * c1 + c2) & ((1 << 16) - 1);
}
return decryptedString.slice(discardNumber);
}
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
'hsbw',
'endchar',
'rmoveto',
'hmoveto',
'vhcurveto',
'hvcurveto'
};
var ESCAPE_CMD = 12;
// Breaks up the stack by arguments and also calculates the value.
function breakUpArgs(stack, numArgs) {
var args = [];
var index = stack.length - 1;
for (var i = 0; i < numArgs; i++) {
if (index < 0) {
args.unshift({ arg: [0],
value: 0,
offset: 0 });
warn('Malformed charstring stack: not enough values on stack.');
continue;
}
var token = stack[index];
if (token === 'div') {
var a = stack[index - 2];
var b = stack[index - 1];
if (!isInt(a) || !isInt(b)) {
warn('Malformed charsting stack: expected ints on stack for div.');
a = 0;
b = 1;
}
args.unshift({ arg: [a, b, 'div'],
value: a / b,
offset: index - 2 });
index -= 3;
} else if (isInt(token)) {
args.unshift({ arg: stack.slice(index, index + 1),
value: token,
offset: index });
index--;
} else {
warn('Malformed charsting stack: found bad token ' + token + '.');
}
}
return args;
}
function decodeCharString(array) {
var charstring = [];
var lsb = 0;
var width = 0;
var flexState = 0;
}
//
//
//
if
}
assert(argc == 0, 'callothersubr with arguments is not supported');
charstring.push(new CallothersubrCmd(index));
continue;
} else if (escape == 7) { // sbw
var args = breakUpArgs(charstring, 4);
var arg0 = args[0];
var arg1 = args[1];
var arg2 = args[2];
lsb = arg0.value;
width = arg2.value;
// To convert to type2 we have to move the width value to the first
// part of the charstring and then use rmoveto with (dx, dy).
// The height argument will not be used for vmtx and vhea tables
// reconstruction -- ignoring it.
charstring = arg2.arg;
charstring = charstring.concat(arg0.arg, arg1.arg);
charstring.push('rmoveto');
continue;
} else if (escape == 17 || escape == 33) {
// pop or setcurrentpoint commands can be ignored
// since we are not doing callothersubr
continue;
} else if (escape == 6) {
// seac is like type 2's special endchar but it doesn't use the
// first argument asb, so remove it.
var args = breakUpArgs(charstring, 5);
var arg0 = args[0];
charstring.splice(arg0.offset, arg0.arg.length);
} else if (!HINTING_ENABLED && (escape == 1 || escape == 2)) {
charstring.push('drop', 'drop', 'drop', 'drop', 'drop', 'drop');
continue;
}
command = charStringDictionary['12'][escape];
} else {
if (value == 13) { // hsbw
var args = breakUpArgs(charstring, 2);
var arg0 = args[0];
var arg1 = args[1];
lsb = arg0.value;
width = arg1.value;
// To convert to type2 we have to move the width value to the first
// part of the charstring and then use hmoveto with lsb.
charstring = arg1.arg;
charstring = charstring.concat(arg0.arg);
charstring.push('hmoveto');
continue;
} else if (value == 10) { // callsubr
if (charstring[charstring.length - 1] < 3) { // subr #0..2
var subrNumber = charstring.pop();
switch (subrNumber) {
case 1:
flexState = 1; // prepare for flex coordinates
break;
case 2:
flexState = 2; // flex in progress
break;
case 0:
// type2 flex command does not need final coords
charstring.push('exch', 'drop', 'exch', 'drop');
charstring.push('flex');
flexState = 0;
break;
}
continue;
}
} else if (value == 21 && flexState > 0) {
if (flexState > 1)
continue; // ignoring rmoveto
value = 5; // first segment replacing with rlineto
} else if (!HINTING_ENABLED && (value == 1 || value == 3)) {
charstring.push('drop', 'drop');
continue;
}
command = charStringDictionary[value];
}
// Some charstring commands are meaningless in Type2 and will return
// a null, let's just ignored them
if (!command && i < count) {
continue;
} else if (!command) {
break;
} else if (command == -1) {
warn('Support for Type1 command ' + value +
' (' + escape + ') is not implemented in charstring: ' +
charstring);
if (value == 12) {
// we know how to ignore only some the Type1 commands
switch (escape) {
case 7:
charstring.push('drop', 'drop', 'drop', 'drop');
continue;
case 8:
charstring.push('drop');
continue;
}
}
}
value =
} else if
value =
} else if
value =
} else if
value =
} else {
value =
command;
(value <= 246) {
value - 139;
(value <= 250) {
((value - 247) * 256) + array[++i] + 108;
(value <= 254) {
-((value - 251) * 256) - array[++i] - 108;
(array[++i] & 0xff) << 24 | (array[++i] & 0xff) << 16 |
(array[++i] & 0xff) << 8 | (array[++i] & 0xff) << 0;
}
charstring.push(value);
}
return { charstring: charstring, width: width, lsb: lsb };
}
/*
* Returns an object containing a Subrs array and a CharStrings
* array extracted from and eexec encrypted block of data
*/
function readNumberArray(str, index) {
var start = index;
while (str[index++] != '[')
start++;
start++;
var count = 0;
while (str[index++] != ']')
count++;
str = str.substr(start, count);
str = str.trim();
// Remove adjacent spaces
str = str.replace(/\s+/g, ' ');
var array = str.split(' ');
for (var i = 0, ii = array.length; i < ii; i++)
array[i] = parseFloat(array[i] || 0);
return array;
}
function readNumber(str, index) {
while (str[index] == ' ')
index++;
glyph: glyph,
data: str.charstring,
lsb: str.lsb,
width: str.width
});
} else {
program.subrs.push(str.charstring);
}
i += length;
token = '';
} else if (isSeparator(c)) {
// Use '| 0' to prevent setting a double into length such as the double
// does not flow into the loop variable.
length = parseInt(token, 10) | 0;
token = '';
} else {
token += c;
if (!glyphsSection) {
switch (token) {
case '/CharString':
glyphsSection = true;
break;
case '/Subrs':
++i;
var num = parseInt(getToken(), 10);
getToken(); // read in 'array'
for (var j = 0; j < num; ++j) {
var t = getToken(); // read in 'dup'
if (t == 'ND' || t == '|-' || t == 'noaccess')
break;
var index = parseInt(getToken(), 10);
if (index > j)
j = index;
var length = parseInt(getToken(), 10);
getToken(); // read in 'RD'
var data = eexec.slice(i + 1, i + 1 + length);
var lenIV = program.properties.privateData['lenIV'];
var encoded = decrypt(data, CHAR_STRS_ENCRYPT_KEY, lenIV);
var str = decodeCharString(encoded);
i = i + 1 + length;
t = getToken(); // read in 'NP'
if (t == 'noaccess')
getToken(); // read in 'put'
program.subrs[index] = str.charstring;
}
break;
case '/BlueValues':
case '/OtherBlues':
case '/FamilyBlues':
case '/FamilyOtherBlues':
var blueArray = readNumberArray(eexecStr, i + 1);
if (blueArray.length > 0 && (blueArray.length % 2) == 0)
program.properties.privateData[token.substring(1)] = blueArray;
break;
case '/StemSnapH':
case '/StemSnapV':
program.properties.privateData[token.substring(1)] =
readNumberArray(eexecStr, i + 1);
break;
case '/StdHW':
case '/StdVW':
program.properties.privateData[token.substring(1)] =
readNumberArray(eexecStr, i + 2)[0];
break;
case '/BlueShift':
case '/lenIV':
case '/BlueFuzz':
case '/BlueScale':
case '/LanguageGroup':
case '/ExpansionFactor':
program.properties.privateData[token.substring(1)] =
readNumber(eexecStr, i + 1);
break;
}
} else if (c == '/') {
token = glyph = '';
while ((c = eexecStr[++i]) != ' ')
glyph += c;
}
}
}
return program;
};
this.extractFontHeader = function Type1Parser_extractFontHeader(stream,
properties) {
var headerString = '';
for (var i = 0, ii = stream.length; i < ii; i++)
headerString += String.fromCharCode(stream[i]);
var token = '';
var count = headerString.length;
for (var i = 0; i < count; i++) {
var getToken = function getToken() {
var character = headerString[i];
while (i < count && (isSeparator(character) || character == '/'))
character = headerString[++i];
var token = '';
while (i < count && !(isSeparator(character) || character == '/')) {
token += character;
character = headerString[++i];
}
return token;
};
var c = headerString[i];
if (isSeparator(c)) {
switch (token) {
case '/FontMatrix':
var matrix = readNumberArray(headerString, i + 1);
// The FontMatrix is in unitPerEm, so make it pixels
for (var j = 0, jj = matrix.length; j < jj; j++)
matrix[j] *= 1000;
// Make the angle into the right direction
matrix[2] *= -1;
properties.fontMatrix = matrix;
break;
case '/Encoding':
var encodingArg = getToken();
var encoding;
if (!/^\d+$/.test(encodingArg)) {
// encoding name is specified
encoding = Encodings[encodingArg];
} else {
encoding = [];
var size = parseInt(encodingArg, 10);
getToken(); // read in 'array'
for (var j = 0; j < size; j++) {
var token = getToken();
if (token == 'dup') {
var index = parseInt(getToken(), 10);
var glyph = getToken();
encoding[index] = glyph;
getToken(); // read the in 'put'
}
}
}
if (!properties.hasEncoding && encoding) {
properties.baseEncoding = encoding;
break;
}
break;
}
token = '';
} else {
token += c;
}
}
};
};
/**
* The CFF class takes a Type1 file and wrap it into a
* 'Compact Font Format' which itself embed Type2 charstrings.
*/
var CFFStandardStrings = [
'.notdef', 'space', 'exclam', 'quotedbl', 'numbersign', 'dollar', 'percent',
'ampersand', 'quoteright', 'parenleft', 'parenright', 'asterisk', 'plus',
'comma', 'hyphen', 'period', 'slash', 'zero', 'one', 'two', 'three', 'four',
'five', 'six', 'seven', 'eight', 'nine', 'colon', 'semicolon', 'less',
'equal', 'greater', 'question', 'at', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
'X', 'Y', 'Z', 'bracketleft', 'backslash', 'bracketright', 'asciicircum',
'underscore', 'quoteleft', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y',
'z', 'braceleft', 'bar', 'braceright', 'asciitilde', 'exclamdown', 'cent',
'sterling', 'fraction', 'yen', 'florin', 'section', 'currency',
'quotesingle', 'quotedblleft', 'guillemotleft', 'guilsinglleft',
'guilsinglright', 'fi', 'fl', 'endash', 'dagger', 'daggerdbl',
'periodcentered', 'paragraph', 'bullet', 'quotesinglbase', 'quotedblbase',
'quotedblright', 'guillemotright', 'ellipsis', 'perthousand', 'questiondown',
'grave', 'acute', 'circumflex', 'tilde', 'macron', 'breve', 'dotaccent',
'dieresis', 'ring', 'cedilla', 'hungarumlaut', 'ogonek', 'caron', 'emdash',
} else {
return '\x1d' +
String.fromCharCode((value >> 24) & 0xFF) +
String.fromCharCode((value >> 16) & 0xFF) +
String.fromCharCode((value >> 8) & 0xFF) +
String.fromCharCode(value & 0xFF);
}
},
getOrderedCharStrings: function Type1Font_getOrderedCharStrings(glyphs,
properties) {
var charstrings = [];
var i, length, glyphName;
var unusedUnicode = CMAP_GLYPH_OFFSET;
for (i = 0, length = glyphs.length; i < length; i++) {
var item = glyphs[i];
var glyphName = item.glyph;
var unicode = glyphName in GlyphsUnicode ?
GlyphsUnicode[glyphName] : unusedUnicode++;
charstrings.push({
glyph: glyphName,
unicode: unicode,
gid: i,
charstring: item.data,
width: item.width,
lsb: item.lsb
});
}
charstrings.sort(function charstrings_sort(a, b) {
return a.unicode - b.unicode;
});
return charstrings;
},
getType2Charstrings: function Type1Font_getType2Charstrings(
type1Subrs) {
var type2Charstrings = [];
var count = type1Subrs.length;
var type1Charstrings = [];
for (var i = 0; i < count; i++)
type1Charstrings.push(type1Subrs[i].charstring.slice());
for (var i = 0; i < count; i++)
type2Charstrings.push(this.flattenCharstring(type1Charstrings, i));
return type2Charstrings;
},
getType2Subrs: function Type1Font_getType2Subrs(type1Subrs) {
var bias = 0;
var count = type1Subrs.length;
if (count < 1133)
bias = 107;
else if (count < 33769)
bias = 1131;
else
bias = 32768;
// Add a bunch of empty subrs to deal with the Type2 bias
var type2Subrs = [];
for (var i = 0; i < bias; i++)
type2Subrs.push([0x0B]);
for (var i = 0; i < count; i++) {
type2Subrs.push(this.flattenCharstring(type1Subrs, i));
}
return type2Subrs;
},
/*
* Flatten the commands by interpreting the postscript code and replacing
* every 'callsubr', 'callothersubr' by the real commands.
*/
commandsMap: {
'hstem': 1,
'vstem': 3,
'vmoveto': 4,
'rlineto': 5,
'hlineto': 6,
'vlineto': 7,
'rrcurveto': 8,
'callsubr': 10,
'return': 11,
'sub': [12, 11],
'div': [12, 12],
'exch': [12, 28],
'flex': [12, 35],
'drop' : [12, 18],
'endchar': 14,
'rmoveto': 21,
'hmoveto': 22,
'vhcurveto': 30,
'hvcurveto': 31
},
flattenCharstring: function Type1Font_flattenCharstring(charstrings, index) {
var charstring = charstrings[index];
if (!charstring)
return [0x0B];
var map = this.commandsMap;
// charstring changes size - can't cache .length in loop
for (var i = 0; i < charstring.length; i++) {
var command = charstring[i];
if (typeof command === 'string') {
var cmd = map[command];
assert(cmd, 'Unknow command: ' + command);
if (isArray(cmd))
charstring.splice(i++, 1, cmd[0], cmd[1]);
else
charstring[i] = cmd;
} else if (command instanceof CallothersubrCmd) {
var otherSubrCharstring = charstrings[command.index];
if (otherSubrCharstring) {
var lastCommand = otherSubrCharstring.indexOf('return');
if (lastCommand >= 0)
otherSubrCharstring = otherSubrCharstring.slice(0, lastCommand);
charstring.splice.apply(charstring,
[i, 1].concat(otherSubrCharstring));
} else
if (!properties.privateData.hasOwnProperty(field))
continue;
var value = properties.privateData[field];
if (isArray(value)) {
data += self.encodeNumber(value[0]);
for (var i = 1, ii = value.length; i < ii; i++)
data += self.encodeNumber(value[i] - value[i - 1]);
} else {
data += self.encodeNumber(value);
}
data += fieldMap[field];
}
data += self.encodeNumber(data.length + 4) + '\x13'; // Subrs offset
return data;
})(this),
'localSubrs': this.createCFFIndexHeader(subrs, true)
};
fields.topDict = fields.topDict();
var cff = [];
for (var index in fields) {
var field = fields[index];
for (var i = 0, ii = field.length; i < ii; i++)
cff.push(field.charCodeAt(i));
}
return cff;
}
};
var CFFFont = (function CFFFontClosure() {
function CFFFont(file, properties) {
this.properties = properties;
var parser = new CFFParser(file, properties);
var cff = parser.parse(true);
var compiler = new CFFCompiler(cff);
this.readExtra(cff);
try {
this.data = compiler.compile();
} catch (e) {
warn('Failed to compile font ' + properties.loadedName);
// There may have just been an issue with the compiler, set the data
// anyway and hope the font loaded.
this.data = file;
}
}
CFFFont.prototype = {
readExtra: function CFFFont_readExtra(cff) {
// charstrings contains info about glyphs (one element per glyph
// containing mappings for {unicode, width})
var charset = cff.charset.charset;
var encoding = cff.encoding ? cff.encoding.encoding : null;
var charstrings = this.getCharStrings(charset, encoding);
return CFFFont;
})();
var CFFParser = (function CFFParserClosure() {
var CharstringValidationData = [
null,
{ id: 'hstem', min: 2, resetStack: true },
null,
{ id: 'vstem', min: 2, resetStack: true },
{ id: 'vmoveto', min: 1, resetStack: true },
{ id: 'rlineto', min: 2, resetStack: true },
{ id: 'hlineto', min: 1, resetStack: true },
{ id: 'vlineto', min: 1, resetStack: true },
{ id: 'rrcurveto', min: 6, resetStack: true },
null,
{ id: 'callsubr', min: 1, undefStack: true },
{ id: 'return', min: 0, resetStack: true },
null, // 12
null,
null, // endchar
null,
null,
null,
{ id: 'hstemhm', min: 2, resetStack: true },
null, // hintmask
null, // cntrmask
{ id: 'rmoveto', min: 2, resetStack: true },
{ id: 'hmoveto', min: 1, resetStack: true },
{ id: 'vstemhm', min: 2, resetStack: true },
{ id: 'rcurveline', min: 8, resetStack: true },
{ id: 'rlinecurve', min: 8, resetStack: true },
{ id: 'vvcurveto', min: 4, resetStack: true },
{ id: 'hhcurveto', min: 4, resetStack: true },
null, // shortint
{ id: 'callgsubr', min: 1, undefStack: true },
{ id: 'vhcurveto', min: 4, resetStack: true },
{ id: 'hvcurveto', min: 4, resetStack: true }
];
var CharstringValidationData12 = [
null,
null,
null,
{ id: 'and', min: 2, stackDelta: -1 },
{ id: 'or', min: 2, stackDelta: -1 },
{ id: 'not', min: 2, stackDelta: -1 },
null,
null,
null,
{ id: 'abs', min: 1, stackDelta: 0 },
{ id: 'add', min: 2, stackDelta: -1 },
{ id: 'sub', min: 2, stackDelta: -1 },
{ id: 'div', min: 2, stackDelta: -1 },
null,
{ id: 'neg', min: 1, stackDelta: 0 },
{ id: 'eq', min: 2, stackDelta: -1 },
null,
null,
{ id: 'drop', min: 1, stackDelta: -1 },
null,
{ id:
{ id:
{ id:
{ id:
{ id:
null,
{ id:
{ id:
{ id:
{ id:
{ id:
null,
null,
null,
{ id:
{ id:
{ id:
{ id:
'put', min: 2,
'get', min: 1,
'ifelse', min:
'random', min:
'mul', min: 2,
stackDelta: -2 },
stackDelta: 0 },
4, stackDelta: -3 },
0, stackDelta: 1 },
stackDelta: -1 },
];
function CFFParser(file, properties) {
this.bytes = file.getBytes();
this.properties = properties;
}
CFFParser.prototype = {
parse: function CFFParser_parse(normalizeCIDData) {
var properties = this.properties;
var cff = new CFF();
this.cff = cff;
// The first five sections must be in order, all the others are reached
// via offsets contained in one of the below.
var header = this.parseHeader();
var nameIndex = this.parseIndex(header.endPos);
var topDictIndex = this.parseIndex(nameIndex.endPos);
var stringIndex = this.parseIndex(topDictIndex.endPos);
var globalSubrIndex = this.parseIndex(stringIndex.endPos);
var topDictParsed = this.parseDict(topDictIndex.obj.get(0));
var topDict = this.createDict(CFFTopDict, topDictParsed, cff.strings);
cff.header = header.obj;
cff.names = this.parseNameIndex(nameIndex.obj);
cff.strings = this.parseStringIndex(stringIndex.obj);
cff.topDict = topDict;
cff.globalSubrIndex = globalSubrIndex.obj;
this.parsePrivateDict(cff.topDict);
cff.isCIDFont = topDict.hasName('ROS');
var charStringOffset = topDict.getByName('CharStrings');
cff.charStrings = this.parseCharStrings(charStringOffset);
var fontMatrix = topDict.getByName('FontMatrix');
if (fontMatrix) {
// estimating unitsPerEM for the font
properties.unitsPerEm = 1 / fontMatrix[0];
}
}
var operands = [];
var entries = [];
var pos = 0;
var end = dict.length;
while (pos < end) {
var b = dict[pos];
if (b <= 21) {
if (b === 12)
b = (b << 8) | dict[++pos];
entries.push([b, operands]);
operands = [];
++pos;
} else {
operands.push(parseOperand());
}
}
return entries;
},
parseIndex: function CFFParser_parseIndex(pos) {
var cffIndex = new CFFIndex();
var bytes = this.bytes;
var count = (bytes[pos++] << 8) | bytes[pos++];
var offsets = [];
var start = pos;
var end = pos;
if (count != 0) {
var offsetSize = bytes[pos++];
// add 1 for offset to determine size of last object
var startPos = pos + ((count + 1) * offsetSize) - 1;
for (var i = 0, ii = count + 1; i < ii; ++i) {
var offset = 0;
for (var j = 0; j < offsetSize; ++j) {
offset <<= 8;
offset += bytes[pos++];
}
offsets.push(startPos + offset);
}
end = offsets[count];
}
for (var i = 0, ii = offsets.length - 1; i < ii; ++i) {
var offsetStart = offsets[i];
var offsetEnd = offsets[i + 1];
cffIndex.add(bytes.subarray(offsetStart, offsetEnd));
}
return {obj: cffIndex, endPos: end};
},
parseNameIndex: function CFFParser_parseNameIndex(index) {
var names = [];
for (var i = 0, ii = index.count; i < ii; ++i) {
var name = index.get(i);
// OTS doesn't allow names to be over 127 characters.
var length = Math.min(name.length, 127);
var data = [];
// OTS also only permits certain characters in the name.
for (var j = 0; j < length; ++j) {
var c = name[j];
if (j === 0 && c === 0) {
data[j] = c;
continue;
}
if ((c < 33 || c > 126) || c === 91 /* [ */ || c === 93 /* ] */ ||
c === 40 /* ( */ || c === 41 /* ) */ || c === 123 /* { */ ||
c === 125 /* } */ || c === 60 /* < */ || c === 62 /* > */ ||
c === 47 /* / */ || c === 37 /* % */) {
data[j] = 95;
continue;
}
data[j] = c;
}
names.push(String.fromCharCode.apply(null, data));
}
return names;
},
parseStringIndex: function CFFParser_parseStringIndex(index) {
var strings = new CFFStrings();
for (var i = 0, ii = index.count; i < ii; ++i) {
var data = index.get(i);
strings.add(String.fromCharCode.apply(null, data));
}
return strings;
},
createDict: function CFFParser_createDict(type, dict, strings) {
var cffDict = new type(strings);
var types = cffDict.types;
for (var i = 0, ii = dict.length; i < ii; ++i) {
var pair = dict[i];
var key = pair[0];
var value = pair[1];
cffDict.setByKey(key, value);
}
return cffDict;
},
parseCharStrings: function CFFParser_parseCharStrings(charStringOffset) {
var charStrings = this.parseIndex(charStringOffset).obj;
var count = charStrings.count;
for (var i = 0; i < count; i++) {
var charstring = charStrings.get(i);
var stackSize = 0;
var undefStack = true;
var hints = 0;
var valid = true;
var data = charstring;
var length = data.length;
for (var j = 0; j < length;) {
var value = data[j++];
var validationCommand = null;
if (value == 12) {
var q = data[j++];
if (q == 0) {
// The CFF specification state that the 'dotsection' command
// (12, 0) is deprecated and treated as a no-op, but all Type2
// charstrings processors should support them. Unfortunately
// the font sanitizer don't. As a workaround the sequence (12, 0)
}
}
}
}
}
}
}
}
if (validationCommand) {
if ('min' in validationCommand) {
if (!undefStack && stackSize < validationCommand.min) {
warn('Not enough parameters for ' + validationCommand.id +
'; actual: ' + stackSize +
', expected: ' + validationCommand.min);
valid = false;
break;
}
}
if ('stackDelta' in validationCommand) {
stackSize += validationCommand.stackDelta;
} else if (validationCommand.resetStack) {
stackSize = 0;
undefStack = false;
} else if (validationCommand.undefStack) {
stackSize = 0;
undefStack = true;
}
}
}
if (!valid) {
// resetting invalid charstring to single 'endchar'
charStrings.set(i, new Uint8Array([14]));
}
}
return charStrings;
},
parsePrivateDict: function CFFParser_parsePrivateDict(parentDict) {
// no private dict, do nothing
if (!parentDict.hasName('Private'))
return;
var privateOffset = parentDict.getByName('Private');
// make sure the params are formatted correctly
if (!isArray(privateOffset) || privateOffset.length !== 2) {
parentDict.removeByName('Private');
return;
}
var size = privateOffset[0];
var offset = privateOffset[1];
// remove empty dicts or ones that refer to invalid location
if (size === 0 || offset >= this.bytes.length) {
parentDict.removeByName('Private');
return;
}
var
var
var
var
bytes = this.bytes;
start = pos;
format = bytes[pos++];
charset = ['.notdef'];
case 0:
for (var i = 0; i < length; i++) {
var id = (bytes[pos++] << 8) | bytes[pos++];
charset.push(cid ? id : strings.get(id));
}
break;
case 1:
while (charset.length <= length) {
var id = (bytes[pos++] << 8) | bytes[pos++];
var count = bytes[pos++];
for (var i = 0; i <= count; i++)
charset.push(cid ? id++ : strings.get(id++));
}
break;
case 2:
while (charset.length <= length) {
var id = (bytes[pos++] << 8) | bytes[pos++];
var count = (bytes[pos++] << 8) | bytes[pos++];
for (var i = 0; i <= count; i++)
charset.push(cid ? id++ : strings.get(id++));
}
break;
default:
error('Unknown charset format');
}
// Raw won't be needed if we actually compile the charset.
var end = pos;
var raw = bytes.subarray(start, end);
return new CFFCharset(false, format, charset, raw);
},
parseEncoding: function CFFParser_parseEncoding(pos,
properties,
strings,
charset) {
var encoding = {};
var bytes = this.bytes;
var predefined = false;
var hasSupplement = false;
var format;
var raw = null;
function readSupplement() {
var supplementsCount = bytes[pos++];
for (var i = 0; i < supplementsCount; i++) {
var code = bytes[pos++];
var sid = (bytes[pos++] << 8) + (bytes[pos++] & 0xff);
encoding[code] = properties.differences.indexOf(strings.get(sid));
}
}
if (pos == 0 || pos == 1) {
predefined = true;
format = pos;
var gid = 1;
var baseEncoding = pos ? Encodings.ExpertEncoding :
Encodings.StandardEncoding;
for (var i = 0, ii = charset.length; i < ii; i++) {
var index = baseEncoding.indexOf(charset[i]);
if (index != -1)
encoding[index] = gid++;
}
} else {
var dataStart = pos;
var format = bytes[pos++];
switch (format & 0x7f) {
case 0:
var glyphsCount = bytes[pos++];
for (var i = 1; i <= glyphsCount; i++)
encoding[bytes[pos++]] = i;
break;
case 1:
var rangesCount = bytes[pos++];
var gid = 1;
for (var i = 0; i < rangesCount; i++) {
var start = bytes[pos++];
var left = bytes[pos++];
for (var j = start; j <= start + left; j++)
encoding[j] = gid++;
}
break;
default:
error('Unknow encoding format: ' + format + ' in CFF');
break;
}
var dataEnd = pos;
if (format & 0x80) {
// The font sanitizer does not support CFF encoding with a
// supplement, since the encoding is not really used to map
// between gid to glyph, let's overwrite what is declared in
// the top dictionary to let the sanitizer think the font use
// StandardEncoding, that's a lie but that's ok.
bytes[dataStart] &= 0x7f;
readSupplement();
hasSupplement = true;
}
raw = bytes.subarray(dataStart, dataEnd);
}
format = format & 0x7f;
return new CFFEncoding(predefined, format, encoding, raw);
},
parseFDSelect: function CFFParser_parseFDSelect(pos, length) {
var start = pos;
var bytes = this.bytes;
var format = bytes[pos++];
var fdSelect = [];
switch (format) {
case 0:
for (var i = 0; i < length; ++i) {
var id = bytes[pos++];
fdSelect.push(id);
}
break;
case 3:
var rangesCount = (bytes[pos++] << 8) | bytes[pos++];
for (var i = 0; i < rangesCount; ++i) {
var first = (bytes[pos++] << 8) | bytes[pos++];
var fdIndex = bytes[pos++];
return CFFStandardStrings[0];
},
add: function CFFStrings_add(value) {
this.strings.push(value);
},
get count() {
return this.strings.length;
}
};
return CFFStrings;
})();
var CFFIndex = (function CFFIndexClosure() {
function CFFIndex() {
this.objects = [];
this.length = 0;
}
CFFIndex.prototype = {
add: function CFFIndex_add(data) {
this.length += data.length;
this.objects.push(data);
},
set: function CFFIndex_set(index, data) {
this.length += data.length - this.objects[index].length;
this.objects[index] = data;
},
get: function CFFIndex_get(index) {
return this.objects[index];
},
get count() {
return this.objects.length;
}
};
return CFFIndex;
})();
var CFFDict = (function CFFDictClosure() {
function CFFDict(tables, strings) {
this.keyToNameMap = tables.keyToNameMap;
this.nameToKeyMap = tables.nameToKeyMap;
this.defaults = tables.defaults;
this.types = tables.types;
this.opcodes = tables.opcodes;
this.order = tables.order;
this.strings = strings;
this.values = {};
}
CFFDict.prototype = {
// value should always be an array
setByKey: function CFFDict_setByKey(key, value) {
if (!(key in this.keyToNameMap))
return false;
// ignore empty values
if (value.length === 0)
return true;
var type = this.types[key];
// remove the array wrapping these types of values
if (type === 'num' || type === 'sid' || type === 'offset')
value = value[0];
this.values[key] = value;
return true;
},
hasName: function CFFDict_hasName(name) {
return this.nameToKeyMap[name] in this.values;
},
getByName: function CFFDict_getByName(name) {
if (!(name in this.nameToKeyMap))
error('Invalid dictionary name "' + name + '"');
var key = this.nameToKeyMap[name];
if (!(key in this.values))
return this.defaults[key];
return this.values[key];
},
removeByName: function CFFDict_removeByName(name) {
delete this.values[this.nameToKeyMap[name]];
}
};
CFFDict.createTables = function CFFDict_createTables(layout) {
var tables = {
keyToNameMap: {},
nameToKeyMap: {},
defaults: {},
types: {},
opcodes: {},
order: []
};
for (var i = 0, ii = layout.length; i < ii; ++i) {
var entry = layout[i];
var key = isArray(entry[0]) ? (entry[0][0] << 8) + entry[0][1] : entry[0];
tables.keyToNameMap[key] = entry[1];
tables.nameToKeyMap[entry[1]] = key;
tables.types[key] = entry[2];
tables.defaults[key] = entry[3];
tables.opcodes[key] = isArray(entry[0]) ? entry[0] : [entry[0]];
tables.order.push(key);
}
return tables;
};
return CFFDict;
})();
var CFFTopDict = (function CFFTopDictClosure() {
var layout = [
[[12, 30], 'ROS', ['sid', 'sid', 'num'], null],
[[12, 20], 'SyntheticBase', 'num', null],
[0, 'version', 'sid', null],
[1, 'Notice', 'sid', null],
[[12, 0], 'Copyright', 'sid', null],
[2, 'FullName', 'sid', null],
[3, 'FamilyName', 'sid', null],
[4, 'Weight', 'sid', null],
[[12, 1], 'isFixedPitch', 'num', 0],
[[12, 2], 'ItalicAngle', 'num', 0],
[[12, 3], 'UnderlinePosition', 'num', -100],
[[12, 4], 'UnderlineThickness', 'num', 50],
[[12, 5], 'PaintType', 'num', 0],
[[12, 6], 'CharstringType', 'num', 2],
[[12, 7], 'FontMatrix', ['num', 'num', 'num', 'num', 'num', 'num'],
[.001, 0, 0, .001, 0, 0]],
[13, 'UniqueID', 'num', null],
var CFFCharsetPredefinedTypes = {
ISO_ADOBE: 0,
EXPERT: 1,
EXPERT_SUBSET: 2
};
var CFFCharsetEmbeddedTypes = {
FORMAT0: 0,
FORMAT1: 1,
FORMAT2: 2
};
var CFFCharset = (function CFFCharsetClosure() {
function CFFCharset(predefined, format, charset, raw) {
this.predefined = predefined;
this.format = format;
this.charset = charset;
this.raw = raw;
}
return CFFCharset;
})();
var CFFEncodingPredefinedTypes = {
STANDARD: 0,
EXPERT: 1
};
var CFFCharsetEmbeddedTypes = {
FORMAT0: 0,
FORMAT1: 1
};
var CFFEncoding = (function CFFEncodingClosure() {
function CFFEncoding(predefined, format, encoding, raw) {
this.predefined = predefined;
this.format = format;
this.encoding = encoding;
this.raw = raw;
}
return CFFEncoding;
})();
var CFFFDSelect = (function CFFFDSelectClosure() {
function CFFFDSelect(fdSelect, raw) {
this.fdSelect = fdSelect;
this.raw = raw;
}
return CFFFDSelect;
})();
// Helper class to keep track of where an offset is within the data and helps
// filling in that offset once it's known.
var CFFOffsetTracker = (function CFFOffsetTrackerClosure() {
function CFFOffsetTracker() {
this.offsets = {};
}
CFFOffsetTracker.prototype = {
isTracking: function CFFOffsetTracker_isTracking(key) {
return key in this.offsets;
},
track: function CFFOffsetTracker_track(key, location) {
if (key in this.offsets)
error('Already tracking location of ' + key);
this.offsets[key] = location;
},
offset: function CFFOffsetTracker_offset(value) {
for (var key in this.offsets) {
this.offsets[key] += value;
}
},
setEntryLocation: function CFFOffsetTracker_setEntryLocation(key,
values,
output) {
if (!(key in this.offsets))
error('Not tracking location of ' + key);
var data = output.data;
var dataOffset = this.offsets[key];
var size = 5;
for (var i = 0, ii = values.length; i < ii; ++i) {
var offset0 = i * size + dataOffset;
var offset1 = offset0 + 1;
var offset2 = offset0 + 2;
var offset3 = offset0 + 3;
var offset4 = offset0 + 4;
// It's easy to screw up offsets so perform this sanity check.
if (data[offset0] !== 0x1d || data[offset1] !== 0 ||
data[offset2] !== 0 || data[offset3] !== 0 || data[offset4] !== 0)
error('writing to an offset that is not empty');
var value = values[i];
data[offset0] = 0x1d;
data[offset1] = (value >> 24) & 0xFF;
data[offset2] = (value >> 16) & 0xFF;
data[offset3] = (value >> 8) & 0xFF;
data[offset4] = value & 0xFF;
}
}
};
return CFFOffsetTracker;
})();
// Takes a CFF and converts it to the binary representation.
var CFFCompiler = (function CFFCompilerClosure() {
function stringToArray(str) {
var array = [];
for (var i = 0, ii = str.length; i < ii; ++i)
array[i] = str.charCodeAt(i);
return array;
};
function CFFCompiler(cff) {
this.cff = cff;
}
CFFCompiler.prototype = {
compile: function CFFCompiler_compile() {
var cff = this.cff;
var output = {
data: [],
length: 0,
add: function CFFCompiler_add(data) {
this.data = this.data.concat(data);
this.length = this.data.length;
}
};
},
compileCharStrings: function CFFCompiler_compileCharStrings(charStrings) {
return this.compileIndex(charStrings);
},
compileCharset: function CFFCompiler_compileCharset(charset) {
return this.compileTypedArray(charset.raw);
},
compileEncoding: function CFFCompiler_compileEncoding(encoding) {
return this.compileTypedArray(encoding.raw);
},
compileFDSelect: function CFFCompiler_compileFDSelect(fdSelect) {
return this.compileTypedArray(fdSelect);
},
compileTypedArray: function CFFCompiler_compileTypedArray(data) {
var out = [];
for (var i = 0, ii = data.length; i < ii; ++i)
out[i] = data[i];
return out;
},
compileIndex: function CFFCompiler_compileIndex(index, trackers) {
trackers = trackers || [];
var objects = index.objects;
// First 2 bytes contains the number of objects contained into this index
var count = objects.length;
// If there is no object, just create an index. This technically
// should just be [0, 0] but OTS has an issue with that.
if (count == 0)
return [0, 0, 0];
var data = [(count >> 8) & 0xFF, count & 0xff];
var lastOffset = 1;
for (var i = 0; i < count; ++i)
lastOffset += objects[i].length;
var offsetSize;
if (lastOffset < 0x100)
offsetSize = 1;
else if (lastOffset < 0x10000)
offsetSize = 2;
else if (lastOffset < 0x1000000)
offsetSize = 3;
else
offsetSize = 4;
// Next byte contains the offset size use to reference object in the file
data.push(offsetSize);
// Add another offset after this one because we need a new offset
var relativeOffset = 1;
for (var i = 0; i < count + 1; i++) {
if (offsetSize === 1) {
data.push(relativeOffset & 0xFF);
} else if (offsetSize === 2) {
data.push((relativeOffset >> 8) & 0xFF,
relativeOffset & 0xFF);
} else if (offsetSize === 3) {
data.push((relativeOffset >> 16) & 0xFF,
(relativeOffset >> 8) & 0xFF,
relativeOffset
} else {
data.push((relativeOffset
(relativeOffset
(relativeOffset
relativeOffset
}
& 0xFF);
>>> 24) & 0xFF,
>> 16) & 0xFF,
>> 8) & 0xFF,
& 0xFF);
if (objects[i])
relativeOffset += objects[i].length;
}
var offset = data.length;
for (var i = 0; i < count; i++) {
// Notify the tracker where the object will be offset in the data.
if (trackers[i])
trackers[i].offset(data.length);
for (var j = 0, jj = objects[i].length; j < jj; j++)
data.push(objects[i][j]);
}
return data;
}
};
return CFFCompiler;
})();
// Workaround for Private Use Area characters in Chrome on Windows
// http://code.google.com/p/chromium/issues/detail?id=122465
// https://github.com/mozilla/pdf.js/issues/1689
(function checkChromeWindows() {
if (/Windows.*Chrome/.test(navigator.userAgent)) {
SYMBOLIC_FONT_GLYPH_OFFSET = 0xF100;
}
})();
var GlyphsUnicode = {
A: 0x0041,
AE: 0x00C6,
AEacute: 0x01FC,
AEmacron: 0x01E2,
AEsmall: 0xF7E6,
Aacute: 0x00C1,
Aacutesmall: 0xF7E1,
Abreve: 0x0102,
Abreveacute: 0x1EAE,
Abrevecyrillic: 0x04D0,
Abrevedotbelow: 0x1EB6,
Abrevegrave: 0x1EB0,
Abrevehookabove: 0x1EB2,
Abrevetilde: 0x1EB4,
Acaron: 0x01CD,
Acircle: 0x24B6,
Acircumflex: 0x00C2,
Acircumflexacute: 0x1EA4,
Acircumflexdotbelow: 0x1EAC,
Acircumflexgrave: 0x1EA6,
Acircumflexhookabove: 0x1EA8,
Acircumflexsmall: 0xF7E2,
Acircumflextilde: 0x1EAA,
Acute: 0xF6C9,
Acutesmall: 0xF7B4,
Acyrillic: 0x0410,
Adblgrave: 0x0200,
Adieresis: 0x00C4,
Adieresiscyrillic: 0x04D2,
Adieresismacron: 0x01DE,
Adieresissmall: 0xF7E4,
Adotbelow: 0x1EA0,
Adotmacron: 0x01E0,
Agrave: 0x00C0,
Agravesmall: 0xF7E0,
Ahookabove: 0x1EA2,
Aiecyrillic: 0x04D4,
Ainvertedbreve: 0x0202,
Alpha: 0x0391,
Alphatonos: 0x0386,
Amacron: 0x0100,
Amonospace: 0xFF21,
Aogonek: 0x0104,
Aring: 0x00C5,
Aringacute: 0x01FA,
Aringbelow: 0x1E00,
Aringsmall: 0xF7E5,
Asmall: 0xF761,
Atilde: 0x00C3,
Atildesmall: 0xF7E3,
Aybarmenian: 0x0531,
B: 0x0042,
Bcircle: 0x24B7,
Bdotaccent: 0x1E02,
Bdotbelow: 0x1E04,
Becyrillic: 0x0411,
Benarmenian: 0x0532,
Beta: 0x0392,
Bhook: 0x0181,
Blinebelow: 0x1E06,
Bmonospace: 0xFF22,
Brevesmall: 0xF6F4,
Bsmall: 0xF762,
Btopbar: 0x0182,
C: 0x0043,
Caarmenian: 0x053E,
Cacute: 0x0106,
Caron: 0xF6CA,
Caronsmall: 0xF6F5,
Ccaron: 0x010C,
Ccedilla: 0x00C7,
Ccedillaacute: 0x1E08,
Ccedillasmall: 0xF7E7,
Ccircle: 0x24B8,
Ccircumflex: 0x0108,
Cdot: 0x010A,
Cdotaccent: 0x010A,
Cedillasmall: 0xF7B8,
Chaarmenian: 0x0549,
Cheabkhasiancyrillic: 0x04BC,
Checyrillic: 0x0427,
Chedescenderabkhasiancyrillic: 0x04BE,
Chedescendercyrillic: 0x04B6,
Chedieresiscyrillic: 0x04F4,
Cheharmenian: 0x0543,
Chekhakassiancyrillic: 0x04CB,
Cheverticalstrokecyrillic: 0x04B8,
Chi: 0x03A7,
Chook: 0x0187,
Circumflexsmall: 0xF6F6,
Cmonospace: 0xFF23,
Coarmenian: 0x0551,
Csmall: 0xF763,
D: 0x0044,
DZ: 0x01F1,
DZcaron: 0x01C4,
Daarmenian: 0x0534,
Dafrican: 0x0189,
Dcaron: 0x010E,
Dcedilla: 0x1E10,
Dcircle: 0x24B9,
Dcircumflexbelow: 0x1E12,
Dcroat: 0x0110,
Ddotaccent: 0x1E0A,
Ddotbelow: 0x1E0C,
Decyrillic: 0x0414,
Deicoptic: 0x03EE,
Delta: 0x2206,
Deltagreek: 0x0394,
Dhook: 0x018A,
Dieresis: 0xF6CB,
DieresisAcute: 0xF6CC,
DieresisGrave: 0xF6CD,
Dieresissmall: 0xF7A8,
Digammagreek: 0x03DC,
Djecyrillic: 0x0402,
Dlinebelow: 0x1E0E,
Dmonospace: 0xFF24,
Dotaccentsmall: 0xF6F7,
Dslash: 0x0110,
Dsmall: 0xF764,
Dtopbar: 0x018B,
Dz: 0x01F2,
Dzcaron: 0x01C5,
Dzeabkhasiancyrillic: 0x04E0,
Dzecyrillic: 0x0405,
Dzhecyrillic: 0x040F,
E: 0x0045,
Eacute: 0x00C9,
Eacutesmall: 0xF7E9,
Ebreve: 0x0114,
Ecaron: 0x011A,
Ecedillabreve: 0x1E1C,
Echarmenian: 0x0535,
Ecircle: 0x24BA,
Ecircumflex: 0x00CA,
Ecircumflexacute: 0x1EBE,
Ecircumflexbelow: 0x1E18,
Ecircumflexdotbelow: 0x1EC6,
Ecircumflexgrave: 0x1EC0,
Ecircumflexhookabove: 0x1EC2,
Ecircumflexsmall: 0xF7EA,
Ecircumflextilde: 0x1EC4,
Ecyrillic: 0x0404,
Edblgrave: 0x0204,
Edieresis: 0x00CB,
Edieresissmall: 0xF7EB,
Edot: 0x0116,
Edotaccent: 0x0116,
Edotbelow: 0x1EB8,
Efcyrillic: 0x0424,
Egrave: 0x00C8,
Egravesmall: 0xF7E8,
Eharmenian: 0x0537,
Ehookabove: 0x1EBA,
Eightroman: 0x2167,
Einvertedbreve: 0x0206,
Eiotifiedcyrillic: 0x0464,
Elcyrillic: 0x041B,
Elevenroman: 0x216A,
Emacron: 0x0112,
Emacronacute: 0x1E16,
Emacrongrave: 0x1E14,
Emcyrillic: 0x041C,
Emonospace: 0xFF25,
Encyrillic: 0x041D,
Endescendercyrillic: 0x04A2,
Eng: 0x014A,
Enghecyrillic: 0x04A4,
Enhookcyrillic: 0x04C7,
Eogonek: 0x0118,
Eopen: 0x0190,
Epsilon: 0x0395,
Epsilontonos: 0x0388,
Ercyrillic: 0x0420,
Ereversed: 0x018E,
Ereversedcyrillic: 0x042D,
Escyrillic: 0x0421,
Esdescendercyrillic: 0x04AA,
Esh: 0x01A9,
Esmall: 0xF765,
Eta: 0x0397,
Etarmenian: 0x0538,
Etatonos: 0x0389,
Eth: 0x00D0,
Ethsmall: 0xF7F0,
Etilde: 0x1EBC,
Etildebelow: 0x1E1A,
Euro: 0x20AC,
Ezh: 0x01B7,
Ezhcaron: 0x01EE,
Ezhreversed: 0x01B8,
F: 0x0046,
Fcircle: 0x24BB,
Fdotaccent: 0x1E1E,
Feharmenian: 0x0556,
Feicoptic: 0x03E4,
Fhook: 0x0191,
Fitacyrillic: 0x0472,
Fiveroman: 0x2164,
Fmonospace: 0xFF26,
Fourroman: 0x2163,
Fsmall: 0xF766,
G: 0x0047,
GBsquare: 0x3387,
Gacute: 0x01F4,
Gamma: 0x0393,
Gammaafrican: 0x0194,
Gangiacoptic: 0x03EA,
Gbreve: 0x011E,
Gcaron: 0x01E6,
Gcedilla: 0x0122,
Gcircle: 0x24BC,
Gcircumflex: 0x011C,
Gcommaaccent: 0x0122,
Gdot: 0x0120,
Gdotaccent: 0x0120,
Gecyrillic: 0x0413,
Ghadarmenian: 0x0542,
Ghemiddlehookcyrillic: 0x0494,
Ghestrokecyrillic: 0x0492,
Gheupturncyrillic: 0x0490,
Ghook: 0x0193,
Gimarmenian: 0x0533,
Gjecyrillic: 0x0403,
Gmacron: 0x1E20,
Gmonospace: 0xFF27,
Grave: 0xF6CE,
Gravesmall: 0xF760,
Gsmall: 0xF767,
Gsmallhook: 0x029B,
Gstroke: 0x01E4,
H: 0x0048,
H18533: 0x25CF,
H18543: 0x25AA,
H18551: 0x25AB,
H22073: 0x25A1,
HPsquare: 0x33CB,
Haabkhasiancyrillic: 0x04A8,
Hadescendercyrillic: 0x04B2,
Hardsigncyrillic: 0x042A,
Hbar: 0x0126,
Hbrevebelow: 0x1E2A,
Hcedilla: 0x1E28,
Hcircle: 0x24BD,
Hcircumflex: 0x0124,
Hdieresis: 0x1E26,
Hdotaccent: 0x1E22,
Hdotbelow: 0x1E24,
Hmonospace: 0xFF28,
Hoarmenian: 0x0540,
Horicoptic: 0x03E8,
Hsmall: 0xF768,
Hungarumlaut: 0xF6CF,
Hungarumlautsmall: 0xF6F8,
Hzsquare: 0x3390,
I: 0x0049,
IAcyrillic: 0x042F,
IJ: 0x0132,
IUcyrillic: 0x042E,
Iacute: 0x00CD,
Iacutesmall: 0xF7ED,
Ibreve: 0x012C,
Icaron: 0x01CF,
Icircle: 0x24BE,
Icircumflex: 0x00CE,
Icircumflexsmall: 0xF7EE,
Icyrillic: 0x0406,
Idblgrave: 0x0208,
Idieresis: 0x00CF,
Idieresisacute: 0x1E2E,
Idieresiscyrillic: 0x04E4,
Idieresissmall: 0xF7EF,
Idot: 0x0130,
Idotaccent: 0x0130,
Idotbelow: 0x1ECA,
Iebrevecyrillic: 0x04D6,
Iecyrillic: 0x0415,
Ifraktur: 0x2111,
Igrave: 0x00CC,
Igravesmall: 0xF7EC,
Ihookabove: 0x1EC8,
Iicyrillic: 0x0418,
Iinvertedbreve: 0x020A,
Iishortcyrillic: 0x0419,
Imacron: 0x012A,
Imacroncyrillic: 0x04E2,
Imonospace: 0xFF29,
Iniarmenian: 0x053B,
Iocyrillic: 0x0401,
Iogonek: 0x012E,
Iota: 0x0399,
Iotaafrican: 0x0196,
Iotadieresis: 0x03AA,
Iotatonos: 0x038A,
Ismall: 0xF769,
Istroke: 0x0197,
Itilde: 0x0128,
Itildebelow: 0x1E2C,
Izhitsacyrillic: 0x0474,
Izhitsadblgravecyrillic: 0x0476,
J: 0x004A,
Jaarmenian: 0x0541,
Jcircle: 0x24BF,
Jcircumflex: 0x0134,
Jecyrillic: 0x0408,
Jheharmenian: 0x054B,
Jmonospace: 0xFF2A,
Jsmall: 0xF76A,
K: 0x004B,
KBsquare: 0x3385,
KKsquare: 0x33CD,
Kabashkircyrillic: 0x04A0,
Kacute: 0x1E30,
Kacyrillic: 0x041A,
Kadescendercyrillic: 0x049A,
Kahookcyrillic: 0x04C3,
Kappa: 0x039A,
Kastrokecyrillic: 0x049E,
Kaverticalstrokecyrillic: 0x049C,
Kcaron: 0x01E8,
Kcedilla: 0x0136,
Kcircle: 0x24C0,
Kcommaaccent: 0x0136,
Kdotbelow: 0x1E32,
Keharmenian: 0x0554,
Kenarmenian: 0x053F,
Khacyrillic: 0x0425,
Kheicoptic: 0x03E6,
Khook: 0x0198,
Kjecyrillic: 0x040C,
Klinebelow: 0x1E34,
Kmonospace: 0xFF2B,
Koppacyrillic: 0x0480,
Koppagreek: 0x03DE,
Ksicyrillic: 0x046E,
Ksmall: 0xF76B,
L: 0x004C,
LJ: 0x01C7,
LL: 0xF6BF,
Lacute: 0x0139,
Lambda: 0x039B,
Lcaron: 0x013D,
Lcedilla: 0x013B,
Lcircle: 0x24C1,
Lcircumflexbelow: 0x1E3C,
Lcommaaccent: 0x013B,
Ldot: 0x013F,
Ldotaccent: 0x013F,
Ldotbelow: 0x1E36,
Ldotbelowmacron: 0x1E38,
Liwnarmenian: 0x053C,
Lj: 0x01C8,
Ljecyrillic: 0x0409,
Llinebelow: 0x1E3A,
Lmonospace: 0xFF2C,
Lslash: 0x0141,
Lslashsmall: 0xF6F9,
Lsmall: 0xF76C,
M: 0x004D,
MBsquare: 0x3386,
Macron: 0xF6D0,
Macronsmall: 0xF7AF,
Macute: 0x1E3E,
Mcircle: 0x24C2,
Mdotaccent: 0x1E40,
Mdotbelow: 0x1E42,
Menarmenian: 0x0544,
Mmonospace: 0xFF2D,
Msmall: 0xF76D,
Mturned: 0x019C,
Mu: 0x039C,
N: 0x004E,
NJ: 0x01CA,
Nacute: 0x0143,
Ncaron: 0x0147,
Ncedilla: 0x0145,
Ncircle: 0x24C3,
Ncircumflexbelow: 0x1E4A,
Ncommaaccent: 0x0145,
Ndotaccent: 0x1E44,
Ndotbelow: 0x1E46,
Nhookleft: 0x019D,
Nineroman: 0x2168,
Nj: 0x01CB,
Njecyrillic: 0x040A,
Nlinebelow: 0x1E48,
Nmonospace: 0xFF2E,
Nowarmenian: 0x0546,
Nsmall: 0xF76E,
Ntilde: 0x00D1,
Ntildesmall: 0xF7F1,
Nu: 0x039D,
O: 0x004F,
OE: 0x0152,
OEsmall: 0xF6FA,
Oacute: 0x00D3,
Oacutesmall: 0xF7F3,
Obarredcyrillic: 0x04E8,
Obarreddieresiscyrillic: 0x04EA,
Obreve: 0x014E,
Ocaron: 0x01D1,
Ocenteredtilde: 0x019F,
Ocircle: 0x24C4,
Ocircumflex: 0x00D4,
Ocircumflexacute: 0x1ED0,
Ocircumflexdotbelow: 0x1ED8,
Ocircumflexgrave: 0x1ED2,
Ocircumflexhookabove: 0x1ED4,
Ocircumflexsmall: 0xF7F4,
Ocircumflextilde: 0x1ED6,
Ocyrillic: 0x041E,
Odblacute: 0x0150,
Odblgrave: 0x020C,
Odieresis: 0x00D6,
Odieresiscyrillic: 0x04E6,
Odieresissmall: 0xF7F6,
Odotbelow: 0x1ECC,
Ogoneksmall: 0xF6FB,
Ograve: 0x00D2,
Ogravesmall: 0xF7F2,
Oharmenian: 0x0555,
Ohm: 0x2126,
Ohookabove: 0x1ECE,
Ohorn: 0x01A0,
Ohornacute: 0x1EDA,
Ohorndotbelow: 0x1EE2,
Ohorngrave: 0x1EDC,
Ohornhookabove: 0x1EDE,
Ohorntilde: 0x1EE0,
Ohungarumlaut: 0x0150,
Oi: 0x01A2,
Oinvertedbreve: 0x020E,
Omacron: 0x014C,
Omacronacute: 0x1E52,
Omacrongrave: 0x1E50,
Omega: 0x2126,
Omegacyrillic: 0x0460,
Omegagreek: 0x03A9,
Omegaroundcyrillic: 0x047A,
Omegatitlocyrillic: 0x047C,
Omegatonos: 0x038F,
Omicron: 0x039F,
Omicrontonos: 0x038C,
Omonospace: 0xFF2F,
Oneroman: 0x2160,
Oogonek: 0x01EA,
Oogonekmacron: 0x01EC,
Oopen: 0x0186,
Oslash: 0x00D8,
Oslashacute: 0x01FE,
Oslashsmall: 0xF7F8,
Osmall: 0xF76F,
Ostrokeacute: 0x01FE,
Otcyrillic: 0x047E,
Otilde: 0x00D5,
Otildeacute: 0x1E4C,
Otildedieresis: 0x1E4E,
Otildesmall: 0xF7F5,
P: 0x0050,
Pacute: 0x1E54,
Pcircle: 0x24C5,
Pdotaccent: 0x1E56,
Pecyrillic: 0x041F,
Peharmenian: 0x054A,
Pemiddlehookcyrillic: 0x04A6,
Phi: 0x03A6,
Phook: 0x01A4,
Pi: 0x03A0,
Piwrarmenian: 0x0553,
Pmonospace: 0xFF30,
Psi: 0x03A8,
Psicyrillic: 0x0470,
Psmall: 0xF770,
Q: 0x0051,
Qcircle: 0x24C6,
Qmonospace: 0xFF31,
Qsmall: 0xF771,
R: 0x0052,
Raarmenian: 0x054C,
Racute: 0x0154,
Rcaron: 0x0158,
Rcedilla: 0x0156,
Rcircle: 0x24C7,
Rcommaaccent: 0x0156,
Rdblgrave: 0x0210,
Rdotaccent: 0x1E58,
Rdotbelow: 0x1E5A,
Rdotbelowmacron: 0x1E5C,
Reharmenian: 0x0550,
Rfraktur: 0x211C,
Rho: 0x03A1,
Ringsmall: 0xF6FC,
Rinvertedbreve: 0x0212,
Rlinebelow: 0x1E5E,
Rmonospace: 0xFF32,
Rsmall: 0xF772,
Rsmallinverted: 0x0281,
Rsmallinvertedsuperior: 0x02B6,
S: 0x0053,
SF010000: 0x250C,
SF020000: 0x2514,
SF030000: 0x2510,
SF040000: 0x2518,
SF050000: 0x253C,
SF060000: 0x252C,
SF070000: 0x2534,
SF080000: 0x251C,
SF090000: 0x2524,
SF100000: 0x2500,
SF110000: 0x2502,
SF190000: 0x2561,
SF200000: 0x2562,
SF210000: 0x2556,
SF220000: 0x2555,
SF230000: 0x2563,
SF240000: 0x2551,
SF250000: 0x2557,
SF260000: 0x255D,
SF270000: 0x255C,
SF280000: 0x255B,
SF360000: 0x255E,
SF370000: 0x255F,
SF380000: 0x255A,
SF390000: 0x2554,
SF400000: 0x2569,
SF410000: 0x2566,
SF420000: 0x2560,
SF430000: 0x2550,
SF440000: 0x256C,
SF450000: 0x2567,
SF460000: 0x2568,
SF470000: 0x2564,
SF480000: 0x2565,
SF490000: 0x2559,
SF500000: 0x2558,
SF510000: 0x2552,
SF520000: 0x2553,
SF530000: 0x256B,
SF540000: 0x256A,
Sacute: 0x015A,
Sacutedotaccent: 0x1E64,
Sampigreek: 0x03E0,
Scaron: 0x0160,
Scarondotaccent: 0x1E66,
Scaronsmall: 0xF6FD,
Scedilla: 0x015E,
Schwa: 0x018F,
Schwacyrillic: 0x04D8,
Schwadieresiscyrillic: 0x04DA,
Scircle: 0x24C8,
Scircumflex: 0x015C,
Scommaaccent: 0x0218,
Sdotaccent: 0x1E60,
Sdotbelow: 0x1E62,
Sdotbelowdotaccent: 0x1E68,
Seharmenian: 0x054D,
Sevenroman: 0x2166,
Shaarmenian: 0x0547,
Shacyrillic: 0x0428,
Shchacyrillic: 0x0429,
Sheicoptic: 0x03E2,
Shhacyrillic: 0x04BA,
Shimacoptic: 0x03EC,
Sigma: 0x03A3,
Sixroman: 0x2165,
Smonospace: 0xFF33,
Softsigncyrillic: 0x042C,
Ssmall: 0xF773,
Stigmagreek: 0x03DA,
T: 0x0054,
Tau: 0x03A4,
Tbar: 0x0166,
Tcaron: 0x0164,
Tcedilla: 0x0162,
Tcircle: 0x24C9,
Tcircumflexbelow: 0x1E70,
Tcommaaccent: 0x0162,
Tdotaccent: 0x1E6A,
Tdotbelow: 0x1E6C,
Tecyrillic: 0x0422,
Tedescendercyrillic: 0x04AC,
Tenroman: 0x2169,
Tetsecyrillic: 0x04B4,
Theta: 0x0398,
Thook: 0x01AC,
Thorn: 0x00DE,
Thornsmall: 0xF7FE,
Threeroman: 0x2162,
Tildesmall: 0xF6FE,
Tiwnarmenian: 0x054F,
Tlinebelow: 0x1E6E,
Tmonospace: 0xFF34,
Toarmenian: 0x0539,
Tonefive: 0x01BC,
Tonesix: 0x0184,
Tonetwo: 0x01A7,
Tretroflexhook: 0x01AE,
Tsecyrillic: 0x0426,
Tshecyrillic: 0x040B,
Tsmall: 0xF774,
Twelveroman: 0x216B,
Tworoman: 0x2161,
U: 0x0055,
Uacute: 0x00DA,
Uacutesmall: 0xF7FA,
Ubreve: 0x016C,
Ucaron: 0x01D3,
Ucircle: 0x24CA,
Ucircumflex: 0x00DB,
Ucircumflexbelow: 0x1E76,
Ucircumflexsmall: 0xF7FB,
Ucyrillic: 0x0423,
Udblacute: 0x0170,
Udblgrave: 0x0214,
Udieresis: 0x00DC,
Udieresisacute: 0x01D7,
Udieresisbelow: 0x1E72,
Udieresiscaron: 0x01D9,
Udieresiscyrillic: 0x04F0,
Udieresisgrave: 0x01DB,
Udieresismacron: 0x01D5,
Udieresissmall: 0xF7FC,
Udotbelow: 0x1EE4,
Ugrave: 0x00D9,
Ugravesmall: 0xF7F9,
Uhookabove: 0x1EE6,
Uhorn: 0x01AF,
Uhornacute: 0x1EE8,
Uhorndotbelow: 0x1EF0,
Uhorngrave: 0x1EEA,
Uhornhookabove: 0x1EEC,
Uhorntilde: 0x1EEE,
Uhungarumlaut: 0x0170,
Uhungarumlautcyrillic: 0x04F2,
Uinvertedbreve: 0x0216,
Ukcyrillic: 0x0478,
Umacron: 0x016A,
Umacroncyrillic: 0x04EE,
Umacrondieresis: 0x1E7A,
Umonospace: 0xFF35,
Uogonek: 0x0172,
Upsilon: 0x03A5,
Upsilon1: 0x03D2,
Upsilonacutehooksymbolgreek: 0x03D3,
Upsilonafrican: 0x01B1,
Upsilondieresis: 0x03AB,
Upsilondieresishooksymbolgreek: 0x03D4,
Upsilonhooksymbol: 0x03D2,
Upsilontonos: 0x038E,
Uring: 0x016E,
Ushortcyrillic: 0x040E,
Usmall: 0xF775,
Ustraightcyrillic: 0x04AE,
Ustraightstrokecyrillic: 0x04B0,
Utilde: 0x0168,
Utildeacute: 0x1E78,
Utildebelow: 0x1E74,
V: 0x0056,
Vcircle: 0x24CB,
Vdotbelow: 0x1E7E,
Vecyrillic: 0x0412,
Vewarmenian: 0x054E,
Vhook: 0x01B2,
Vmonospace: 0xFF36,
Voarmenian: 0x0548,
Vsmall: 0xF776,
Vtilde: 0x1E7C,
W: 0x0057,
Wacute: 0x1E82,
Wcircle: 0x24CC,
Wcircumflex: 0x0174,
Wdieresis: 0x1E84,
Wdotaccent: 0x1E86,
Wdotbelow: 0x1E88,
Wgrave: 0x1E80,
Wmonospace: 0xFF37,
Wsmall: 0xF777,
X: 0x0058,
Xcircle: 0x24CD,
Xdieresis: 0x1E8C,
Xdotaccent: 0x1E8A,
Xeharmenian: 0x053D,
Xi: 0x039E,
Xmonospace: 0xFF38,
Xsmall: 0xF778,
Y: 0x0059,
Yacute: 0x00DD,
Yacutesmall: 0xF7FD,
Yatcyrillic: 0x0462,
Ycircle: 0x24CE,
Ycircumflex: 0x0176,
Ydieresis: 0x0178,
Ydieresissmall: 0xF7FF,
Ydotaccent: 0x1E8E,
Ydotbelow: 0x1EF4,
Yericyrillic: 0x042B,
Yerudieresiscyrillic: 0x04F8,
Ygrave: 0x1EF2,
Yhook: 0x01B3,
Yhookabove: 0x1EF6,
Yiarmenian: 0x0545,
Yicyrillic: 0x0407,
Yiwnarmenian: 0x0552,
Ymonospace: 0xFF39,
Ysmall: 0xF779,
Ytilde: 0x1EF8,
Yusbigcyrillic: 0x046A,
Yusbigiotifiedcyrillic: 0x046C,
Yuslittlecyrillic: 0x0466,
Yuslittleiotifiedcyrillic: 0x0468,
Z: 0x005A,
Zaarmenian: 0x0536,
Zacute: 0x0179,
Zcaron: 0x017D,
Zcaronsmall: 0xF6FF,
Zcircle: 0x24CF,
Zcircumflex: 0x1E90,
Zdot: 0x017B,
Zdotaccent: 0x017B,
Zdotbelow: 0x1E92,
Zecyrillic: 0x0417,
Zedescendercyrillic: 0x0498,
Zedieresiscyrillic: 0x04DE,
Zeta: 0x0396,
Zhearmenian: 0x053A,
Zhebrevecyrillic: 0x04C1,
Zhecyrillic: 0x0416,
Zhedescendercyrillic: 0x0496,
Zhedieresiscyrillic: 0x04DC,
Zlinebelow: 0x1E94,
Zmonospace: 0xFF3A,
Zsmall: 0xF77A,
Zstroke: 0x01B5,
a: 0x0061,
aabengali: 0x0986,
aacute: 0x00E1,
aadeva: 0x0906,
aagujarati: 0x0A86,
aagurmukhi: 0x0A06,
aamatragurmukhi: 0x0A3E,
aarusquare: 0x3303,
aavowelsignbengali: 0x09BE,
aavowelsigndeva: 0x093E,
aavowelsigngujarati: 0x0ABE,
abbreviationmarkarmenian: 0x055F,
abbreviationsigndeva: 0x0970,
abengali: 0x0985,
abopomofo: 0x311A,
abreve: 0x0103,
abreveacute: 0x1EAF,
abrevecyrillic: 0x04D1,
abrevedotbelow: 0x1EB7,
abrevegrave: 0x1EB1,
abrevehookabove: 0x1EB3,
abrevetilde: 0x1EB5,
acaron: 0x01CE,
acircle: 0x24D0,
acircumflex: 0x00E2,
acircumflexacute: 0x1EA5,
acircumflexdotbelow: 0x1EAD,
acircumflexgrave: 0x1EA7,
acircumflexhookabove: 0x1EA9,
acircumflextilde: 0x1EAB,
acute: 0x00B4,
acutebelowcmb: 0x0317,
acutecmb: 0x0301,
acutecomb: 0x0301,
acutedeva: 0x0954,
acutelowmod: 0x02CF,
acutetonecmb: 0x0341,
acyrillic: 0x0430,
adblgrave: 0x0201,
addakgurmukhi: 0x0A71,
adeva: 0x0905,
adieresis: 0x00E4,
adieresiscyrillic: 0x04D3,
adieresismacron: 0x01DF,
adotbelow: 0x1EA1,
adotmacron: 0x01E1,
ae: 0x00E6,
aeacute: 0x01FD,
aekorean: 0x3150,
aemacron: 0x01E3,
afii00208: 0x2015,
afii08941: 0x20A4,
afii10017: 0x0410,
afii10018: 0x0411,
afii10019: 0x0412,
afii10020: 0x0413,
afii10021: 0x0414,
afii10022: 0x0415,
afii10023: 0x0401,
afii10024: 0x0416,
afii10025: 0x0417,
afii10026: 0x0418,
afii10027: 0x0419,
afii10028: 0x041A,
afii10029: 0x041B,
afii10030: 0x041C,
afii10031: 0x041D,
afii10032: 0x041E,
afii10033: 0x041F,
afii10034:
afii10035:
afii10036:
afii10037:
afii10038:
afii10039:
afii10040:
afii10041:
afii10042:
afii10043:
afii10044:
afii10045:
afii10046:
afii10047:
afii10048:
afii10049:
afii10050:
afii10051:
afii10052:
afii10053:
afii10054:
afii10055:
afii10056:
afii10057:
afii10058:
afii10059:
afii10060:
afii10061:
afii10062:
afii10063:
afii10064:
afii10065:
afii10066:
afii10067:
afii10068:
afii10069:
afii10070:
afii10071:
afii10072:
afii10073:
afii10074:
afii10075:
afii10076:
afii10077:
afii10078:
afii10079:
afii10080:
afii10081:
afii10082:
afii10083:
afii10084:
afii10085:
afii10086:
afii10087:
afii10088:
afii10089:
afii10090:
afii10091:
afii10092:
afii10093:
0x0420,
0x0421,
0x0422,
0x0423,
0x0424,
0x0425,
0x0426,
0x0427,
0x0428,
0x0429,
0x042A,
0x042B,
0x042C,
0x042D,
0x042E,
0x042F,
0x0490,
0x0402,
0x0403,
0x0404,
0x0405,
0x0406,
0x0407,
0x0408,
0x0409,
0x040A,
0x040B,
0x040C,
0x040E,
0xF6C4,
0xF6C5,
0x0430,
0x0431,
0x0432,
0x0433,
0x0434,
0x0435,
0x0451,
0x0436,
0x0437,
0x0438,
0x0439,
0x043A,
0x043B,
0x043C,
0x043D,
0x043E,
0x043F,
0x0440,
0x0441,
0x0442,
0x0443,
0x0444,
0x0445,
0x0446,
0x0447,
0x0448,
0x0449,
0x044A,
0x044B,
afii10094: 0x044C,
afii10095: 0x044D,
afii10096: 0x044E,
afii10097: 0x044F,
afii10098: 0x0491,
afii10099: 0x0452,
afii10100: 0x0453,
afii10101: 0x0454,
afii10102: 0x0455,
afii10103: 0x0456,
afii10104: 0x0457,
afii10105: 0x0458,
afii10106: 0x0459,
afii10107: 0x045A,
afii10108: 0x045B,
afii10109: 0x045C,
afii10110: 0x045E,
afii10145: 0x040F,
afii10146: 0x0462,
afii10147: 0x0472,
afii10148: 0x0474,
afii10192: 0xF6C6,
afii10193: 0x045F,
afii10194: 0x0463,
afii10195: 0x0473,
afii10196: 0x0475,
afii10831: 0xF6C7,
afii10832: 0xF6C8,
afii10846: 0x04D9,
afii299: 0x200E,
afii300: 0x200F,
afii301: 0x200D,
afii57381: 0x066A,
afii57388: 0x060C,
afii57392: 0x0660,
afii57393: 0x0661,
afii57394: 0x0662,
afii57395: 0x0663,
afii57396: 0x0664,
afii57397: 0x0665,
afii57398: 0x0666,
afii57399: 0x0667,
afii57400: 0x0668,
afii57401: 0x0669,
afii57403: 0x061B,
afii57407: 0x061F,
afii57409: 0x0621,
afii57410: 0x0622,
afii57411: 0x0623,
afii57412: 0x0624,
afii57413: 0x0625,
afii57414: 0x0626,
afii57415: 0x0627,
afii57416: 0x0628,
afii57417: 0x0629,
afii57418: 0x062A,
afii57419: 0x062B,
afii57420: 0x062C,
afii57421: 0x062D,
afii57422: 0x062E,
afii57423:
afii57424:
afii57425:
afii57426:
afii57427:
afii57428:
afii57429:
afii57430:
afii57431:
afii57432:
afii57433:
afii57434:
afii57440:
afii57441:
afii57442:
afii57443:
afii57444:
afii57445:
afii57446:
afii57448:
afii57449:
afii57450:
afii57451:
afii57452:
afii57453:
afii57454:
afii57455:
afii57456:
afii57457:
afii57458:
afii57470:
afii57505:
afii57506:
afii57507:
afii57508:
afii57509:
afii57511:
afii57512:
afii57513:
afii57514:
afii57519:
afii57534:
afii57636:
afii57645:
afii57658:
afii57664:
afii57665:
afii57666:
afii57667:
afii57668:
afii57669:
afii57670:
afii57671:
afii57672:
afii57673:
afii57674:
afii57675:
afii57676:
afii57677:
afii57678:
0x062F,
0x0630,
0x0631,
0x0632,
0x0633,
0x0634,
0x0635,
0x0636,
0x0637,
0x0638,
0x0639,
0x063A,
0x0640,
0x0641,
0x0642,
0x0643,
0x0644,
0x0645,
0x0646,
0x0648,
0x0649,
0x064A,
0x064B,
0x064C,
0x064D,
0x064E,
0x064F,
0x0650,
0x0651,
0x0652,
0x0647,
0x06A4,
0x067E,
0x0686,
0x0698,
0x06AF,
0x0679,
0x0688,
0x0691,
0x06BA,
0x06D2,
0x06D5,
0x20AA,
0x05BE,
0x05C3,
0x05D0,
0x05D1,
0x05D2,
0x05D3,
0x05D4,
0x05D5,
0x05D6,
0x05D7,
0x05D8,
0x05D9,
0x05DA,
0x05DB,
0x05DC,
0x05DD,
0x05DE,
afii57679: 0x05DF,
afii57680: 0x05E0,
afii57681: 0x05E1,
afii57682: 0x05E2,
afii57683: 0x05E3,
afii57684: 0x05E4,
afii57685: 0x05E5,
afii57686: 0x05E6,
afii57687: 0x05E7,
afii57688: 0x05E8,
afii57689: 0x05E9,
afii57690: 0x05EA,
afii57694: 0xFB2A,
afii57695: 0xFB2B,
afii57700: 0xFB4B,
afii57705: 0xFB1F,
afii57716: 0x05F0,
afii57717: 0x05F1,
afii57718: 0x05F2,
afii57723: 0xFB35,
afii57793: 0x05B4,
afii57794: 0x05B5,
afii57795: 0x05B6,
afii57796: 0x05BB,
afii57797: 0x05B8,
afii57798: 0x05B7,
afii57799: 0x05B0,
afii57800: 0x05B2,
afii57801: 0x05B1,
afii57802: 0x05B3,
afii57803: 0x05C2,
afii57804: 0x05C1,
afii57806: 0x05B9,
afii57807: 0x05BC,
afii57839: 0x05BD,
afii57841: 0x05BF,
afii57842: 0x05C0,
afii57929: 0x02BC,
afii61248: 0x2105,
afii61289: 0x2113,
afii61352: 0x2116,
afii61573: 0x202C,
afii61574: 0x202D,
afii61575: 0x202E,
afii61664: 0x200C,
afii63167: 0x066D,
afii64937: 0x02BD,
agrave: 0x00E0,
agujarati: 0x0A85,
agurmukhi: 0x0A05,
ahiragana: 0x3042,
ahookabove: 0x1EA3,
aibengali: 0x0990,
aibopomofo: 0x311E,
aideva: 0x0910,
aiecyrillic: 0x04D5,
aigujarati: 0x0A90,
aigurmukhi: 0x0A10,
aimatragurmukhi: 0x0A48,
ainarabic: 0x0639,
ainfinalarabic: 0xFECA,
aininitialarabic: 0xFECB,
ainmedialarabic: 0xFECC,
ainvertedbreve: 0x0203,
aivowelsignbengali: 0x09C8,
aivowelsigndeva: 0x0948,
aivowelsigngujarati: 0x0AC8,
akatakana: 0x30A2,
akatakanahalfwidth: 0xFF71,
akorean: 0x314F,
alef: 0x05D0,
alefarabic: 0x0627,
alefdageshhebrew: 0xFB30,
aleffinalarabic: 0xFE8E,
alefhamzaabovearabic: 0x0623,
alefhamzaabovefinalarabic: 0xFE84,
alefhamzabelowarabic: 0x0625,
alefhamzabelowfinalarabic: 0xFE88,
alefhebrew: 0x05D0,
aleflamedhebrew: 0xFB4F,
alefmaddaabovearabic: 0x0622,
alefmaddaabovefinalarabic: 0xFE82,
alefmaksuraarabic: 0x0649,
alefmaksurafinalarabic: 0xFEF0,
alefmaksurainitialarabic: 0xFEF3,
alefmaksuramedialarabic: 0xFEF4,
alefpatahhebrew: 0xFB2E,
alefqamatshebrew: 0xFB2F,
aleph: 0x2135,
allequal: 0x224C,
alpha: 0x03B1,
alphatonos: 0x03AC,
amacron: 0x0101,
amonospace: 0xFF41,
ampersand: 0x0026,
ampersandmonospace: 0xFF06,
ampersandsmall: 0xF726,
amsquare: 0x33C2,
anbopomofo: 0x3122,
angbopomofo: 0x3124,
angbracketleft: 0x3008, // This glyph is missing from Adobe's original list.
angbracketright: 0x3009, // This glyph is missing from Adobe's original list.
angkhankhuthai: 0x0E5A,
angle: 0x2220,
anglebracketleft: 0x3008,
anglebracketleftvertical: 0xFE3F,
anglebracketright: 0x3009,
anglebracketrightvertical: 0xFE40,
angleleft: 0x2329,
angleright: 0x232A,
angstrom: 0x212B,
anoteleia: 0x0387,
anudattadeva: 0x0952,
anusvarabengali: 0x0982,
anusvaradeva: 0x0902,
anusvaragujarati: 0x0A82,
aogonek: 0x0105,
apaatosquare: 0x3300,
aparen: 0x249C,
apostrophearmenian: 0x055A,
apostrophemod: 0x02BC,
apple: 0xF8FF,
approaches: 0x2250,
approxequal: 0x2248,
approxequalorimage: 0x2252,
approximatelyequal: 0x2245,
araeaekorean: 0x318E,
araeakorean: 0x318D,
arc: 0x2312,
arighthalfring: 0x1E9A,
aring: 0x00E5,
aringacute: 0x01FB,
aringbelow: 0x1E01,
arrowboth: 0x2194,
arrowdashdown: 0x21E3,
arrowdashleft: 0x21E0,
arrowdashright: 0x21E2,
arrowdashup: 0x21E1,
arrowdblboth: 0x21D4,
arrowdbldown: 0x21D3,
arrowdblleft: 0x21D0,
arrowdblright: 0x21D2,
arrowdblup: 0x21D1,
arrowdown: 0x2193,
arrowdownleft: 0x2199,
arrowdownright: 0x2198,
arrowdownwhite: 0x21E9,
arrowheaddownmod: 0x02C5,
arrowheadleftmod: 0x02C2,
arrowheadrightmod: 0x02C3,
arrowheadupmod: 0x02C4,
arrowhorizex: 0xF8E7,
arrowleft: 0x2190,
arrowleftdbl: 0x21D0,
arrowleftdblstroke: 0x21CD,
arrowleftoverright: 0x21C6,
arrowleftwhite: 0x21E6,
arrowright: 0x2192,
arrowrightdblstroke: 0x21CF,
arrowrightheavy: 0x279E,
arrowrightoverleft: 0x21C4,
arrowrightwhite: 0x21E8,
arrowtableft: 0x21E4,
arrowtabright: 0x21E5,
arrowup: 0x2191,
arrowupdn: 0x2195,
arrowupdnbse: 0x21A8,
arrowupdownbase: 0x21A8,
arrowupleft: 0x2196,
arrowupleftofdown: 0x21C5,
arrowupright: 0x2197,
arrowupwhite: 0x21E7,
arrowvertex: 0xF8E6,
asciicircum: 0x005E,
asciicircummonospace: 0xFF3E,
asciitilde: 0x007E,
asciitildemonospace: 0xFF5E,
ascript: 0x0251,
ascriptturned: 0x0252,
asmallhiragana: 0x3041,
asmallkatakana: 0x30A1,
asmallkatakanahalfwidth: 0xFF67,
asterisk: 0x002A,
asteriskaltonearabic: 0x066D,
asteriskarabic: 0x066D,
asteriskmath: 0x2217,
asteriskmonospace: 0xFF0A,
asterisksmall: 0xFE61,
asterism: 0x2042,
asuperior: 0xF6E9,
asymptoticallyequal: 0x2243,
at: 0x0040,
atilde: 0x00E3,
atmonospace: 0xFF20,
atsmall: 0xFE6B,
aturned: 0x0250,
aubengali: 0x0994,
aubopomofo: 0x3120,
audeva: 0x0914,
augujarati: 0x0A94,
augurmukhi: 0x0A14,
aulengthmarkbengali: 0x09D7,
aumatragurmukhi: 0x0A4C,
auvowelsignbengali: 0x09CC,
auvowelsigndeva: 0x094C,
auvowelsigngujarati: 0x0ACC,
avagrahadeva: 0x093D,
aybarmenian: 0x0561,
ayin: 0x05E2,
ayinaltonehebrew: 0xFB20,
ayinhebrew: 0x05E2,
b: 0x0062,
babengali: 0x09AC,
backslash: 0x005C,
backslashmonospace: 0xFF3C,
badeva: 0x092C,
bagujarati: 0x0AAC,
bagurmukhi: 0x0A2C,
bahiragana: 0x3070,
bahtthai: 0x0E3F,
bakatakana: 0x30D0,
bar: 0x007C,
barmonospace: 0xFF5C,
bbopomofo: 0x3105,
bcircle: 0x24D1,
bdotaccent: 0x1E03,
bdotbelow: 0x1E05,
beamedsixteenthnotes: 0x266C,
because: 0x2235,
becyrillic: 0x0431,
beharabic: 0x0628,
behfinalarabic: 0xFE90,
behinitialarabic: 0xFE91,
behiragana: 0x3079,
behmedialarabic: 0xFE92,
behmeeminitialarabic: 0xFC9F,
behmeemisolatedarabic: 0xFC08,
behnoonfinalarabic: 0xFC6D,
bekatakana: 0x30D9,
benarmenian: 0x0562,
bet: 0x05D1,
beta: 0x03B2,
betasymbolgreek: 0x03D0,
betdagesh: 0xFB31,
betdageshhebrew: 0xFB31,
bethebrew: 0x05D1,
betrafehebrew: 0xFB4C,
bhabengali: 0x09AD,
bhadeva: 0x092D,
bhagujarati: 0x0AAD,
bhagurmukhi: 0x0A2D,
bhook: 0x0253,
bihiragana: 0x3073,
bikatakana: 0x30D3,
bilabialclick: 0x0298,
bindigurmukhi: 0x0A02,
birusquare: 0x3331,
blackcircle: 0x25CF,
blackdiamond: 0x25C6,
blackdownpointingtriangle: 0x25BC,
blackleftpointingpointer: 0x25C4,
blackleftpointingtriangle: 0x25C0,
blacklenticularbracketleft: 0x3010,
blacklenticularbracketleftvertical: 0xFE3B,
blacklenticularbracketright: 0x3011,
blacklenticularbracketrightvertical: 0xFE3C,
blacklowerlefttriangle: 0x25E3,
blacklowerrighttriangle: 0x25E2,
blackrectangle: 0x25AC,
blackrightpointingpointer: 0x25BA,
blackrightpointingtriangle: 0x25B6,
blacksmallsquare: 0x25AA,
blacksmilingface: 0x263B,
blacksquare: 0x25A0,
blackstar: 0x2605,
blackupperlefttriangle: 0x25E4,
blackupperrighttriangle: 0x25E5,
blackuppointingsmalltriangle: 0x25B4,
blackuppointingtriangle: 0x25B2,
blank: 0x2423,
blinebelow: 0x1E07,
block: 0x2588,
bmonospace: 0xFF42,
bobaimaithai: 0x0E1A,
bohiragana: 0x307C,
bokatakana: 0x30DC,
bparen: 0x249D,
bqsquare: 0x33C3,
braceex: 0xF8F4,
braceleft: 0x007B,
braceleftbt: 0xF8F3,
braceleftmid: 0xF8F2,
braceleftmonospace: 0xFF5B,
braceleftsmall: 0xFE5B,
bracelefttp: 0xF8F1,
braceleftvertical: 0xFE37,
braceright: 0x007D,
bracerightbt: 0xF8FE,
bracerightmid: 0xF8FD,
bracerightmonospace: 0xFF5D,
bracerightsmall: 0xFE5C,
bracerighttp: 0xF8FC,
bracerightvertical: 0xFE38,
bracketleft: 0x005B,
bracketleftbt: 0xF8F0,
bracketleftex: 0xF8EF,
bracketleftmonospace: 0xFF3B,
bracketlefttp: 0xF8EE,
bracketright: 0x005D,
bracketrightbt: 0xF8FB,
bracketrightex: 0xF8FA,
bracketrightmonospace: 0xFF3D,
bracketrighttp: 0xF8F9,
breve: 0x02D8,
brevebelowcmb: 0x032E,
brevecmb: 0x0306,
breveinvertedbelowcmb: 0x032F,
breveinvertedcmb: 0x0311,
breveinverteddoublecmb: 0x0361,
bridgebelowcmb: 0x032A,
bridgeinvertedbelowcmb: 0x033A,
brokenbar: 0x00A6,
bstroke: 0x0180,
bsuperior: 0xF6EA,
btopbar: 0x0183,
buhiragana: 0x3076,
bukatakana: 0x30D6,
bullet: 0x2022,
bulletinverse: 0x25D8,
bulletoperator: 0x2219,
bullseye: 0x25CE,
c: 0x0063,
caarmenian: 0x056E,
cabengali: 0x099A,
cacute: 0x0107,
cadeva: 0x091A,
cagujarati: 0x0A9A,
cagurmukhi: 0x0A1A,
calsquare: 0x3388,
candrabindubengali: 0x0981,
candrabinducmb: 0x0310,
candrabindudeva: 0x0901,
candrabindugujarati: 0x0A81,
capslock: 0x21EA,
careof: 0x2105,
caron: 0x02C7,
caronbelowcmb: 0x032C,
caroncmb: 0x030C,
carriagereturn: 0x21B5,
cbopomofo: 0x3118,
ccaron: 0x010D,
ccedilla: 0x00E7,
ccedillaacute: 0x1E09,
ccircle: 0x24D2,
ccircumflex: 0x0109,
ccurl: 0x0255,
cdot: 0x010B,
cdotaccent: 0x010B,
cdsquare: 0x33C5,
cedilla: 0x00B8,
cedillacmb: 0x0327,
cent: 0x00A2,
centigrade: 0x2103,
centinferior: 0xF6DF,
centmonospace: 0xFFE0,
centoldstyle: 0xF7A2,
centsuperior: 0xF6E0,
chaarmenian: 0x0579,
chabengali: 0x099B,
chadeva: 0x091B,
chagujarati: 0x0A9B,
chagurmukhi: 0x0A1B,
chbopomofo: 0x3114,
cheabkhasiancyrillic: 0x04BD,
checkmark: 0x2713,
checyrillic: 0x0447,
chedescenderabkhasiancyrillic: 0x04BF,
chedescendercyrillic: 0x04B7,
chedieresiscyrillic: 0x04F5,
cheharmenian: 0x0573,
chekhakassiancyrillic: 0x04CC,
cheverticalstrokecyrillic: 0x04B9,
chi: 0x03C7,
chieuchacirclekorean: 0x3277,
chieuchaparenkorean: 0x3217,
chieuchcirclekorean: 0x3269,
chieuchkorean: 0x314A,
chieuchparenkorean: 0x3209,
chochangthai: 0x0E0A,
chochanthai: 0x0E08,
chochingthai: 0x0E09,
chochoethai: 0x0E0C,
chook: 0x0188,
cieucacirclekorean: 0x3276,
cieucaparenkorean: 0x3216,
cieuccirclekorean: 0x3268,
cieuckorean: 0x3148,
cieucparenkorean: 0x3208,
cieucuparenkorean: 0x321C,
circle: 0x25CB,
circlecopyrt: 0x00A9, // This glyph is missing from Adobe's original list.
circlemultiply: 0x2297,
circleot: 0x2299,
circleplus: 0x2295,
circlepostalmark: 0x3036,
circlewithlefthalfblack: 0x25D0,
circlewithrighthalfblack: 0x25D1,
circumflex: 0x02C6,
circumflexbelowcmb: 0x032D,
circumflexcmb: 0x0302,
clear: 0x2327,
clickalveolar: 0x01C2,
clickdental: 0x01C0,
clicklateral: 0x01C1,
clickretroflex: 0x01C3,
club: 0x2663,
clubsuitblack: 0x2663,
clubsuitwhite: 0x2667,
cmcubedsquare: 0x33A4,
cmonospace: 0xFF43,
cmsquaredsquare: 0x33A0,
coarmenian: 0x0581,
colon: 0x003A,
colonmonetary: 0x20A1,
colonmonospace: 0xFF1A,
colonsign: 0x20A1,
colonsmall: 0xFE55,
colontriangularhalfmod: 0x02D1,
colontriangularmod: 0x02D0,
comma: 0x002C,
commaabovecmb: 0x0313,
commaaboverightcmb: 0x0315,
commaaccent: 0xF6C3,
commaarabic: 0x060C,
commaarmenian: 0x055D,
commainferior: 0xF6E1,
commamonospace: 0xFF0C,
commareversedabovecmb: 0x0314,
commareversedmod: 0x02BD,
commasmall: 0xFE50,
commasuperior: 0xF6E2,
commaturnedabovecmb: 0x0312,
commaturnedmod: 0x02BB,
compass: 0x263C,
congruent: 0x2245,
contourintegral: 0x222E,
control: 0x2303,
controlACK: 0x0006,
controlBEL: 0x0007,
controlBS: 0x0008,
controlCAN: 0x0018,
controlCR: 0x000D,
controlDC1: 0x0011,
controlDC2: 0x0012,
controlDC3: 0x0013,
controlDC4: 0x0014,
controlDEL: 0x007F,
controlDLE: 0x0010,
controlEM: 0x0019,
controlENQ: 0x0005,
controlEOT: 0x0004,
controlESC: 0x001B,
controlETB: 0x0017,
controlETX: 0x0003,
controlFF: 0x000C,
controlFS: 0x001C,
controlGS: 0x001D,
controlHT: 0x0009,
controlLF: 0x000A,
controlNAK: 0x0015,
controlRS: 0x001E,
controlSI: 0x000F,
controlSO: 0x000E,
controlSOT: 0x0002,
controlSTX: 0x0001,
controlSUB: 0x001A,
controlSYN: 0x0016,
controlUS: 0x001F,
controlVT: 0x000B,
copyright: 0x00A9,
copyrightsans: 0xF8E9,
copyrightserif: 0xF6D9,
cornerbracketleft: 0x300C,
cornerbracketlefthalfwidth: 0xFF62,
cornerbracketleftvertical: 0xFE41,
cornerbracketright: 0x300D,
cornerbracketrighthalfwidth: 0xFF63,
cornerbracketrightvertical: 0xFE42,
corporationsquare: 0x337F,
cosquare: 0x33C7,
coverkgsquare: 0x33C6,
cparen: 0x249E,
cruzeiro: 0x20A2,
cstretched: 0x0297,
curlyand: 0x22CF,
curlyor: 0x22CE,
currency: 0x00A4,
cyrBreve: 0xF6D1,
cyrFlex: 0xF6D2,
cyrbreve: 0xF6D4,
cyrflex: 0xF6D5,
d: 0x0064,
daarmenian: 0x0564,
dabengali: 0x09A6,
dadarabic: 0x0636,
dadeva: 0x0926,
dadfinalarabic: 0xFEBE,
dadinitialarabic: 0xFEBF,
dadmedialarabic: 0xFEC0,
dagesh: 0x05BC,
dageshhebrew: 0x05BC,
dagger: 0x2020,
daggerdbl: 0x2021,
dagujarati: 0x0AA6,
dagurmukhi: 0x0A26,
dahiragana: 0x3060,
dakatakana: 0x30C0,
dalarabic: 0x062F,
dalet: 0x05D3,
daletdagesh: 0xFB33,
daletdageshhebrew: 0xFB33,
dalethebrew: 0x05D3,
dalfinalarabic: 0xFEAA,
dammaarabic: 0x064F,
dammalowarabic: 0x064F,
dammatanaltonearabic: 0x064C,
dammatanarabic: 0x064C,
danda: 0x0964,
dargahebrew: 0x05A7,
dargalefthebrew: 0x05A7,
dasiapneumatacyrilliccmb: 0x0485,
dblGrave: 0xF6D3,
dblanglebracketleft: 0x300A,
dblanglebracketleftvertical: 0xFE3D,
dblanglebracketright: 0x300B,
dblanglebracketrightvertical: 0xFE3E,
dblarchinvertedbelowcmb: 0x032B,
dblarrowleft: 0x21D4,
dblarrowright: 0x21D2,
dbldanda: 0x0965,
dblgrave: 0xF6D6,
dblgravecmb: 0x030F,
dblintegral: 0x222C,
dbllowline: 0x2017,
dbllowlinecmb: 0x0333,
dbloverlinecmb: 0x033F,
dblprimemod: 0x02BA,
dblverticalbar: 0x2016,
dblverticallineabovecmb: 0x030E,
dbopomofo: 0x3109,
dbsquare: 0x33C8,
dcaron: 0x010F,
dcedilla: 0x1E11,
dcircle: 0x24D3,
dcircumflexbelow: 0x1E13,
dcroat: 0x0111,
ddabengali: 0x09A1,
ddadeva: 0x0921,
ddagujarati: 0x0AA1,
ddagurmukhi: 0x0A21,
ddalarabic: 0x0688,
ddalfinalarabic: 0xFB89,
dddhadeva: 0x095C,
ddhabengali: 0x09A2,
ddhadeva: 0x0922,
ddhagujarati: 0x0AA2,
ddhagurmukhi: 0x0A22,
ddotaccent: 0x1E0B,
ddotbelow: 0x1E0D,
decimalseparatorarabic: 0x066B,
decimalseparatorpersian: 0x066B,
decyrillic: 0x0434,
degree: 0x00B0,
dehihebrew: 0x05AD,
dehiragana: 0x3067,
deicoptic: 0x03EF,
dekatakana: 0x30C7,
deleteleft: 0x232B,
deleteright: 0x2326,
delta: 0x03B4,
deltaturned: 0x018D,
denominatorminusonenumeratorbengali: 0x09F8,
dezh: 0x02A4,
dhabengali: 0x09A7,
dhadeva: 0x0927,
dhagujarati: 0x0AA7,
dhagurmukhi: 0x0A27,
dhook: 0x0257,
dialytikatonos: 0x0385,
dialytikatonoscmb: 0x0344,
diamond: 0x2666,
diamondsuitwhite: 0x2662,
dieresis: 0x00A8,
dieresisacute: 0xF6D7,
dieresisbelowcmb: 0x0324,
dieresiscmb: 0x0308,
dieresisgrave: 0xF6D8,
dieresistonos: 0x0385,
dihiragana: 0x3062,
dikatakana: 0x30C2,
dittomark: 0x3003,
divide: 0x00F7,
divides: 0x2223,
divisionslash: 0x2215,
djecyrillic: 0x0452,
dkshade: 0x2593,
dlinebelow: 0x1E0F,
dlsquare: 0x3397,
dmacron: 0x0111,
dmonospace: 0xFF44,
dnblock: 0x2584,
dochadathai: 0x0E0E,
dodekthai: 0x0E14,
dohiragana: 0x3069,
dokatakana: 0x30C9,
dollar: 0x0024,
dollarinferior: 0xF6E3,
dollarmonospace: 0xFF04,
dollaroldstyle: 0xF724,
dollarsmall: 0xFE69,
dollarsuperior: 0xF6E4,
dong: 0x20AB,
dorusquare: 0x3326,
dotaccent: 0x02D9,
dotaccentcmb: 0x0307,
dotbelowcmb: 0x0323,
dotbelowcomb: 0x0323,
dotkatakana: 0x30FB,
dotlessi: 0x0131,
dotlessj: 0xF6BE,
dotlessjstrokehook: 0x0284,
dotmath: 0x22C5,
dottedcircle: 0x25CC,
doubleyodpatah: 0xFB1F,
doubleyodpatahhebrew: 0xFB1F,
downtackbelowcmb: 0x031E,
downtackmod: 0x02D5,
dparen: 0x249F,
dsuperior: 0xF6EB,
dtail: 0x0256,
dtopbar: 0x018C,
duhiragana: 0x3065,
dukatakana: 0x30C5,
dz: 0x01F3,
dzaltone: 0x02A3,
dzcaron: 0x01C6,
dzcurl: 0x02A5,
dzeabkhasiancyrillic: 0x04E1,
dzecyrillic: 0x0455,
dzhecyrillic: 0x045F,
e: 0x0065,
eacute: 0x00E9,
earth: 0x2641,
ebengali: 0x098F,
ebopomofo: 0x311C,
ebreve: 0x0115,
ecandradeva: 0x090D,
ecandragujarati: 0x0A8D,
ecandravowelsigndeva: 0x0945,
ecandravowelsigngujarati: 0x0AC5,
ecaron: 0x011B,
ecedillabreve: 0x1E1D,
echarmenian: 0x0565,
echyiwnarmenian: 0x0587,
ecircle: 0x24D4,
ecircumflex: 0x00EA,
ecircumflexacute: 0x1EBF,
ecircumflexbelow: 0x1E19,
ecircumflexdotbelow: 0x1EC7,
ecircumflexgrave: 0x1EC1,
ecircumflexhookabove: 0x1EC3,
ecircumflextilde: 0x1EC5,
ecyrillic: 0x0454,
edblgrave: 0x0205,
edeva: 0x090F,
edieresis: 0x00EB,
edot: 0x0117,
edotaccent: 0x0117,
edotbelow: 0x1EB9,
eegurmukhi: 0x0A0F,
eematragurmukhi: 0x0A47,
efcyrillic: 0x0444,
egrave: 0x00E8,
egujarati: 0x0A8F,
eharmenian: 0x0567,
ehbopomofo: 0x311D,
ehiragana: 0x3048,
ehookabove: 0x1EBB,
eibopomofo: 0x311F,
eight: 0x0038,
eightarabic: 0x0668,
eightbengali: 0x09EE,
eightcircle: 0x2467,
eightcircleinversesansserif: 0x2791,
eightdeva: 0x096E,
eighteencircle: 0x2471,
eighteenparen: 0x2485,
eighteenperiod: 0x2499,
eightgujarati: 0x0AEE,
eightgurmukhi: 0x0A6E,
eighthackarabic: 0x0668,
eighthangzhou: 0x3028,
eighthnotebeamed: 0x266B,
eightideographicparen: 0x3227,
eightinferior: 0x2088,
eightmonospace: 0xFF18,
eightoldstyle: 0xF738,
eightparen: 0x247B,
eightperiod: 0x248F,
eightpersian: 0x06F8,
eightroman: 0x2177,
eightsuperior: 0x2078,
eightthai: 0x0E58,
einvertedbreve: 0x0207,
eiotifiedcyrillic: 0x0465,
ekatakana: 0x30A8,
ekatakanahalfwidth: 0xFF74,
ekonkargurmukhi: 0x0A74,
ekorean: 0x3154,
elcyrillic: 0x043B,
element: 0x2208,
elevencircle: 0x246A,
elevenparen: 0x247E,
elevenperiod: 0x2492,
elevenroman: 0x217A,
ellipsis: 0x2026,
ellipsisvertical: 0x22EE,
emacron: 0x0113,
emacronacute: 0x1E17,
emacrongrave: 0x1E15,
emcyrillic: 0x043C,
emdash: 0x2014,
emdashvertical: 0xFE31,
emonospace: 0xFF45,
emphasismarkarmenian: 0x055B,
emptyset: 0x2205,
enbopomofo: 0x3123,
encyrillic: 0x043D,
endash: 0x2013,
endashvertical: 0xFE32,
endescendercyrillic: 0x04A3,
eng: 0x014B,
engbopomofo: 0x3125,
enghecyrillic: 0x04A5,
enhookcyrillic: 0x04C8,
enspace: 0x2002,
eogonek: 0x0119,
eokorean: 0x3153,
eopen: 0x025B,
eopenclosed: 0x029A,
eopenreversed: 0x025C,
eopenreversedclosed: 0x025E,
eopenreversedhook: 0x025D,
eparen: 0x24A0,
epsilon: 0x03B5,
epsilontonos: 0x03AD,
equal: 0x003D,
equalmonospace: 0xFF1D,
equalsmall: 0xFE66,
equalsuperior: 0x207C,
equivalence: 0x2261,
erbopomofo: 0x3126,
ercyrillic: 0x0440,
ereversed: 0x0258,
ereversedcyrillic: 0x044D,
escyrillic: 0x0441,
esdescendercyrillic: 0x04AB,
esh: 0x0283,
eshcurl: 0x0286,
eshortdeva: 0x090E,
eshortvowelsigndeva: 0x0946,
eshreversedloop: 0x01AA,
eshsquatreversed: 0x0285,
esmallhiragana: 0x3047,
esmallkatakana: 0x30A7,
esmallkatakanahalfwidth: 0xFF6A,
estimated: 0x212E,
esuperior: 0xF6EC,
eta: 0x03B7,
etarmenian: 0x0568,
etatonos: 0x03AE,
eth: 0x00F0,
etilde: 0x1EBD,
etildebelow: 0x1E1B,
etnahtafoukhhebrew: 0x0591,
etnahtafoukhlefthebrew: 0x0591,
etnahtahebrew: 0x0591,
etnahtalefthebrew: 0x0591,
eturned: 0x01DD,
eukorean: 0x3161,
euro: 0x20AC,
evowelsignbengali: 0x09C7,
evowelsigndeva: 0x0947,
evowelsigngujarati: 0x0AC7,
exclam: 0x0021,
exclamarmenian: 0x055C,
exclamdbl: 0x203C,
exclamdown: 0x00A1,
exclamdownsmall: 0xF7A1,
exclammonospace: 0xFF01,
exclamsmall: 0xF721,
existential: 0x2203,
ezh: 0x0292,
ezhcaron: 0x01EF,
ezhcurl: 0x0293,
ezhreversed: 0x01B9,
ezhtail: 0x01BA,
f: 0x0066,
fadeva: 0x095E,
fagurmukhi: 0x0A5E,
fahrenheit: 0x2109,
fathaarabic: 0x064E,
fathalowarabic: 0x064E,
fathatanarabic: 0x064B,
fbopomofo: 0x3108,
fcircle: 0x24D5,
fdotaccent: 0x1E1F,
feharabic: 0x0641,
feharmenian: 0x0586,
fehfinalarabic: 0xFED2,
fehinitialarabic: 0xFED3,
fehmedialarabic: 0xFED4,
feicoptic: 0x03E5,
female: 0x2640,
ff: 0xFB00,
ffi: 0xFB03,
ffl: 0xFB04,
fi: 0xFB01,
fifteencircle: 0x246E,
fifteenparen: 0x2482,
fifteenperiod: 0x2496,
figuredash: 0x2012,
filledbox: 0x25A0,
filledrect: 0x25AC,
finalkaf: 0x05DA,
finalkafdagesh: 0xFB3A,
finalkafdageshhebrew: 0xFB3A,
finalkafhebrew: 0x05DA,
finalmem: 0x05DD,
finalmemhebrew: 0x05DD,
finalnun: 0x05DF,
finalnunhebrew: 0x05DF,
finalpe: 0x05E3,
finalpehebrew: 0x05E3,
finaltsadi: 0x05E5,
finaltsadihebrew: 0x05E5,
firsttonechinese: 0x02C9,
fisheye: 0x25C9,
fitacyrillic: 0x0473,
five: 0x0035,
fivearabic: 0x0665,
fivebengali: 0x09EB,
fivecircle: 0x2464,
fivecircleinversesansserif: 0x278E,
fivedeva: 0x096B,
fiveeighths: 0x215D,
fivegujarati: 0x0AEB,
fivegurmukhi: 0x0A6B,
fivehackarabic: 0x0665,
fivehangzhou: 0x3025,
fiveideographicparen: 0x3224,
fiveinferior: 0x2085,
fivemonospace: 0xFF15,
fiveoldstyle: 0xF735,
fiveparen: 0x2478,
fiveperiod: 0x248C,
fivepersian: 0x06F5,
fiveroman: 0x2174,
fivesuperior: 0x2075,
fivethai: 0x0E55,
fl: 0xFB02,
florin: 0x0192,
fmonospace: 0xFF46,
fmsquare: 0x3399,
fofanthai: 0x0E1F,
fofathai: 0x0E1D,
fongmanthai: 0x0E4F,
forall: 0x2200,
four: 0x0034,
fourarabic: 0x0664,
fourbengali: 0x09EA,
fourcircle: 0x2463,
fourcircleinversesansserif: 0x278D,
fourdeva: 0x096A,
fourgujarati: 0x0AEA,
fourgurmukhi: 0x0A6A,
fourhackarabic: 0x0664,
fourhangzhou: 0x3024,
fourideographicparen: 0x3223,
fourinferior: 0x2084,
fourmonospace: 0xFF14,
fournumeratorbengali: 0x09F7,
fouroldstyle: 0xF734,
fourparen: 0x2477,
fourperiod: 0x248B,
fourpersian: 0x06F4,
fourroman: 0x2173,
foursuperior: 0x2074,
fourteencircle: 0x246D,
fourteenparen: 0x2481,
fourteenperiod: 0x2495,
fourthai: 0x0E54,
fourthtonechinese: 0x02CB,
fparen: 0x24A1,
fraction: 0x2044,
franc: 0x20A3,
g: 0x0067,
gabengali: 0x0997,
gacute: 0x01F5,
gadeva: 0x0917,
gafarabic: 0x06AF,
gaffinalarabic: 0xFB93,
gafinitialarabic: 0xFB94,
gafmedialarabic: 0xFB95,
gagujarati: 0x0A97,
gagurmukhi: 0x0A17,
gahiragana: 0x304C,
gakatakana: 0x30AC,
gamma: 0x03B3,
gammalatinsmall: 0x0263,
gammasuperior: 0x02E0,
gangiacoptic: 0x03EB,
gbopomofo: 0x310D,
gbreve: 0x011F,
gcaron: 0x01E7,
gcedilla: 0x0123,
gcircle: 0x24D6,
gcircumflex: 0x011D,
gcommaaccent: 0x0123,
gdot: 0x0121,
gdotaccent: 0x0121,
gecyrillic: 0x0433,
gehiragana: 0x3052,
gekatakana: 0x30B2,
geometricallyequal: 0x2251,
gereshaccenthebrew: 0x059C,
gereshhebrew: 0x05F3,
gereshmuqdamhebrew: 0x059D,
germandbls: 0x00DF,
gershayimaccenthebrew: 0x059E,
gershayimhebrew: 0x05F4,
getamark: 0x3013,
ghabengali: 0x0998,
ghadarmenian: 0x0572,
ghadeva: 0x0918,
ghagujarati: 0x0A98,
ghagurmukhi: 0x0A18,
ghainarabic: 0x063A,
ghainfinalarabic: 0xFECE,
ghaininitialarabic: 0xFECF,
ghainmedialarabic: 0xFED0,
ghemiddlehookcyrillic: 0x0495,
ghestrokecyrillic: 0x0493,
gheupturncyrillic: 0x0491,
ghhadeva: 0x095A,
ghhagurmukhi: 0x0A5A,
ghook: 0x0260,
ghzsquare: 0x3393,
gihiragana: 0x304E,
gikatakana: 0x30AE,
gimarmenian: 0x0563,
gimel: 0x05D2,
gimeldagesh: 0xFB32,
gimeldageshhebrew: 0xFB32,
gimelhebrew: 0x05D2,
gjecyrillic: 0x0453,
glottalinvertedstroke: 0x01BE,
glottalstop: 0x0294,
glottalstopinverted: 0x0296,
glottalstopmod: 0x02C0,
glottalstopreversed: 0x0295,
glottalstopreversedmod: 0x02C1,
glottalstopreversedsuperior: 0x02E4,
glottalstopstroke: 0x02A1,
glottalstopstrokereversed: 0x02A2,
gmacron: 0x1E21,
gmonospace: 0xFF47,
gohiragana: 0x3054,
gokatakana: 0x30B4,
gparen: 0x24A2,
gpasquare: 0x33AC,
gradient: 0x2207,
grave: 0x0060,
gravebelowcmb: 0x0316,
gravecmb: 0x0300,
gravecomb: 0x0300,
gravedeva: 0x0953,
gravelowmod: 0x02CE,
gravemonospace: 0xFF40,
gravetonecmb: 0x0340,
greater: 0x003E,
greaterequal: 0x2265,
greaterequalorless: 0x22DB,
greatermonospace: 0xFF1E,
greaterorequivalent: 0x2273,
greaterorless: 0x2277,
greateroverequal: 0x2267,
greatersmall: 0xFE65,
gscript: 0x0261,
gstroke: 0x01E5,
guhiragana: 0x3050,
guillemotleft: 0x00AB,
guillemotright: 0x00BB,
guilsinglleft: 0x2039,
guilsinglright: 0x203A,
gukatakana: 0x30B0,
guramusquare: 0x3318,
gysquare: 0x33C9,
h: 0x0068,
haabkhasiancyrillic: 0x04A9,
haaltonearabic: 0x06C1,
habengali: 0x09B9,
hadescendercyrillic: 0x04B3,
hadeva: 0x0939,
hagujarati: 0x0AB9,
hagurmukhi: 0x0A39,
haharabic: 0x062D,
hahfinalarabic: 0xFEA2,
hahinitialarabic: 0xFEA3,
hahiragana: 0x306F,
hahmedialarabic: 0xFEA4,
haitusquare: 0x332A,
hakatakana: 0x30CF,
hakatakanahalfwidth: 0xFF8A,
halantgurmukhi: 0x0A4D,
hamzaarabic: 0x0621,
hamzalowarabic: 0x0621,
hangulfiller: 0x3164,
hardsigncyrillic: 0x044A,
harpoonleftbarbup: 0x21BC,
harpoonrightbarbup: 0x21C0,
hasquare: 0x33CA,
hatafpatah: 0x05B2,
hatafpatah16: 0x05B2,
hatafpatah23: 0x05B2,
hatafpatah2f: 0x05B2,
hatafpatahhebrew: 0x05B2,
hatafpatahnarrowhebrew: 0x05B2,
hatafpatahquarterhebrew: 0x05B2,
hatafpatahwidehebrew: 0x05B2,
hatafqamats: 0x05B3,
hatafqamats1b: 0x05B3,
hatafqamats28: 0x05B3,
hatafqamats34: 0x05B3,
hatafqamatshebrew: 0x05B3,
hatafqamatsnarrowhebrew: 0x05B3,
hatafqamatsquarterhebrew: 0x05B3,
hatafqamatswidehebrew: 0x05B3,
hatafsegol: 0x05B1,
hatafsegol17: 0x05B1,
hatafsegol24: 0x05B1,
hatafsegol30: 0x05B1,
hatafsegolhebrew: 0x05B1,
hatafsegolnarrowhebrew: 0x05B1,
hatafsegolquarterhebrew: 0x05B1,
hatafsegolwidehebrew: 0x05B1,
hbar: 0x0127,
hbopomofo: 0x310F,
hbrevebelow: 0x1E2B,
hcedilla: 0x1E29,
hcircle: 0x24D7,
hcircumflex: 0x0125,
hdieresis: 0x1E27,
hdotaccent: 0x1E23,
hdotbelow: 0x1E25,
he: 0x05D4,
heart: 0x2665,
heartsuitblack: 0x2665,
heartsuitwhite: 0x2661,
hedagesh: 0xFB34,
hedageshhebrew: 0xFB34,
hehaltonearabic: 0x06C1,
heharabic: 0x0647,
hehebrew: 0x05D4,
hehfinalaltonearabic: 0xFBA7,
hehfinalalttwoarabic: 0xFEEA,
hehfinalarabic: 0xFEEA,
hehhamzaabovefinalarabic: 0xFBA5,
hehhamzaaboveisolatedarabic: 0xFBA4,
hehinitialaltonearabic: 0xFBA8,
hehinitialarabic: 0xFEEB,
hehiragana: 0x3078,
hehmedialaltonearabic: 0xFBA9,
hehmedialarabic: 0xFEEC,
heiseierasquare: 0x337B,
hekatakana: 0x30D8,
hekatakanahalfwidth: 0xFF8D,
hekutaarusquare: 0x3336,
henghook: 0x0267,
herutusquare: 0x3339,
het: 0x05D7,
hethebrew: 0x05D7,
hhook: 0x0266,
hhooksuperior: 0x02B1,
hieuhacirclekorean: 0x327B,
hieuhaparenkorean: 0x321B,
hieuhcirclekorean: 0x326D,
hieuhkorean: 0x314E,
hieuhparenkorean: 0x320D,
hihiragana: 0x3072,
hikatakana: 0x30D2,
hikatakanahalfwidth: 0xFF8B,
hiriq: 0x05B4,
hiriq14: 0x05B4,
hiriq21: 0x05B4,
hiriq2d: 0x05B4,
hiriqhebrew: 0x05B4,
hiriqnarrowhebrew: 0x05B4,
hiriqquarterhebrew: 0x05B4,
hiriqwidehebrew: 0x05B4,
hlinebelow: 0x1E96,
hmonospace: 0xFF48,
hoarmenian: 0x0570,
hohipthai: 0x0E2B,
hohiragana: 0x307B,
hokatakana: 0x30DB,
hokatakanahalfwidth: 0xFF8E,
holam: 0x05B9,
holam19: 0x05B9,
holam26: 0x05B9,
holam32: 0x05B9,
holamhebrew: 0x05B9,
holamnarrowhebrew: 0x05B9,
holamquarterhebrew: 0x05B9,
holamwidehebrew: 0x05B9,
honokhukthai: 0x0E2E,
hookabovecomb: 0x0309,
hookcmb: 0x0309,
hookpalatalizedbelowcmb: 0x0321,
hookretroflexbelowcmb: 0x0322,
hoonsquare: 0x3342,
horicoptic: 0x03E9,
horizontalbar: 0x2015,
horncmb: 0x031B,
hotsprings: 0x2668,
house: 0x2302,
hparen: 0x24A3,
hsuperior: 0x02B0,
hturned: 0x0265,
huhiragana: 0x3075,
huiitosquare: 0x3333,
hukatakana: 0x30D5,
hukatakanahalfwidth: 0xFF8C,
hungarumlaut: 0x02DD,
hungarumlautcmb: 0x030B,
hv: 0x0195,
hyphen: 0x002D,
hypheninferior: 0xF6E5,
hyphenmonospace: 0xFF0D,
hyphensmall: 0xFE63,
hyphensuperior: 0xF6E6,
hyphentwo: 0x2010,
i: 0x0069,
iacute: 0x00ED,
iacyrillic: 0x044F,
ibengali: 0x0987,
ibopomofo: 0x3127,
ibreve: 0x012D,
icaron: 0x01D0,
icircle: 0x24D8,
icircumflex: 0x00EE,
icyrillic: 0x0456,
idblgrave: 0x0209,
ideographearthcircle: 0x328F,
ideographfirecircle: 0x328B,
ideographicallianceparen: 0x323F,
ideographiccallparen: 0x323A,
ideographiccentrecircle: 0x32A5,
ideographicclose: 0x3006,
ideographiccomma: 0x3001,
ideographiccommaleft: 0xFF64,
ideographiccongratulationparen: 0x3237,
ideographiccorrectcircle: 0x32A3,
ideographicearthparen: 0x322F,
ideographicenterpriseparen: 0x323D,
ideographicexcellentcircle: 0x329D,
ideographicfestivalparen: 0x3240,
ideographicfinancialcircle: 0x3296,
ideographicfinancialparen: 0x3236,
ideographicfireparen: 0x322B,
ideographichaveparen: 0x3232,
ideographichighcircle: 0x32A4,
ideographiciterationmark: 0x3005,
ideographiclaborcircle: 0x3298,
ideographiclaborparen: 0x3238,
ideographicleftcircle: 0x32A7,
ideographiclowcircle: 0x32A6,
ideographicmedicinecircle: 0x32A9,
ideographicmetalparen: 0x322E,
ideographicmoonparen: 0x322A,
ideographicnameparen: 0x3234,
ideographicperiod: 0x3002,
ideographicprintcircle: 0x329E,
ideographicreachparen: 0x3243,
ideographicrepresentparen: 0x3239,
ideographicresourceparen: 0x323E,
ideographicrightcircle: 0x32A8,
ideographicsecretcircle: 0x3299,
ideographicselfparen: 0x3242,
ideographicsocietyparen: 0x3233,
ideographicspace: 0x3000,
ideographicspecialparen: 0x3235,
ideographicstockparen: 0x3231,
ideographicstudyparen: 0x323B,
ideographicsunparen: 0x3230,
ideographicsuperviseparen: 0x323C,
ideographicwaterparen: 0x322C,
ideographicwoodparen: 0x322D,
ideographiczero: 0x3007,
ideographmetalcircle: 0x328E,
ideographmooncircle: 0x328A,
ideographnamecircle: 0x3294,
ideographsuncircle: 0x3290,
ideographwatercircle: 0x328C,
ideographwoodcircle: 0x328D,
ideva: 0x0907,
idieresis: 0x00EF,
idieresisacute: 0x1E2F,
idieresiscyrillic: 0x04E5,
idotbelow: 0x1ECB,
iebrevecyrillic: 0x04D7,
iecyrillic: 0x0435,
ieungacirclekorean: 0x3275,
ieungaparenkorean: 0x3215,
ieungcirclekorean: 0x3267,
ieungkorean: 0x3147,
ieungparenkorean: 0x3207,
igrave: 0x00EC,
igujarati: 0x0A87,
igurmukhi: 0x0A07,
ihiragana: 0x3044,
ihookabove: 0x1EC9,
iibengali: 0x0988,
iicyrillic: 0x0438,
iideva: 0x0908,
iigujarati: 0x0A88,
iigurmukhi: 0x0A08,
iimatragurmukhi: 0x0A40,
iinvertedbreve: 0x020B,
iishortcyrillic: 0x0439,
iivowelsignbengali: 0x09C0,
iivowelsigndeva: 0x0940,
iivowelsigngujarati: 0x0AC0,
ij: 0x0133,
ikatakana: 0x30A4,
ikatakanahalfwidth: 0xFF72,
ikorean: 0x3163,
ilde: 0x02DC,
iluyhebrew: 0x05AC,
imacron: 0x012B,
imacroncyrillic: 0x04E3,
imageorapproximatelyequal: 0x2253,
imatragurmukhi: 0x0A3F,
imonospace: 0xFF49,
increment: 0x2206,
infinity: 0x221E,
iniarmenian: 0x056B,
integral: 0x222B,
integralbottom: 0x2321,
integralbt: 0x2321,
integralex: 0xF8F5,
integraltop: 0x2320,
integraltp: 0x2320,
intersection: 0x2229,
intisquare: 0x3305,
invbullet: 0x25D8,
invcircle: 0x25D9,
invsmileface: 0x263B,
iocyrillic: 0x0451,
iogonek: 0x012F,
iota: 0x03B9,
iotadieresis: 0x03CA,
iotadieresistonos: 0x0390,
iotalatin: 0x0269,
iotatonos: 0x03AF,
iparen: 0x24A4,
irigurmukhi: 0x0A72,
ismallhiragana: 0x3043,
ismallkatakana: 0x30A3,
ismallkatakanahalfwidth: 0xFF68,
issharbengali: 0x09FA,
istroke: 0x0268,
isuperior: 0xF6ED,
iterationhiragana: 0x309D,
iterationkatakana: 0x30FD,
itilde: 0x0129,
itildebelow: 0x1E2D,
iubopomofo: 0x3129,
iucyrillic: 0x044E,
ivowelsignbengali: 0x09BF,
ivowelsigndeva: 0x093F,
ivowelsigngujarati: 0x0ABF,
izhitsacyrillic: 0x0475,
izhitsadblgravecyrillic: 0x0477,
j: 0x006A,
jaarmenian: 0x0571,
jabengali: 0x099C,
jadeva: 0x091C,
jagujarati: 0x0A9C,
jagurmukhi: 0x0A1C,
jbopomofo: 0x3110,
jcaron: 0x01F0,
jcircle: 0x24D9,
jcircumflex: 0x0135,
jcrossedtail: 0x029D,
jdotlessstroke: 0x025F,
jecyrillic: 0x0458,
jeemarabic: 0x062C,
jeemfinalarabic: 0xFE9E,
jeeminitialarabic: 0xFE9F,
jeemmedialarabic: 0xFEA0,
jeharabic: 0x0698,
jehfinalarabic: 0xFB8B,
jhabengali: 0x099D,
jhadeva: 0x091D,
jhagujarati: 0x0A9D,
jhagurmukhi: 0x0A1D,
jheharmenian: 0x057B,
jis: 0x3004,
jmonospace: 0xFF4A,
jparen: 0x24A5,
jsuperior: 0x02B2,
k: 0x006B,
kabashkircyrillic: 0x04A1,
kabengali: 0x0995,
kacute: 0x1E31,
kacyrillic: 0x043A,
kadescendercyrillic: 0x049B,
kadeva: 0x0915,
kaf: 0x05DB,
kafarabic: 0x0643,
kafdagesh: 0xFB3B,
kafdageshhebrew: 0xFB3B,
kaffinalarabic: 0xFEDA,
kafhebrew: 0x05DB,
kafinitialarabic: 0xFEDB,
kafmedialarabic: 0xFEDC,
kafrafehebrew: 0xFB4D,
kagujarati: 0x0A95,
kagurmukhi: 0x0A15,
kahiragana: 0x304B,
kahookcyrillic: 0x04C4,
kakatakana: 0x30AB,
kakatakanahalfwidth: 0xFF76,
kappa: 0x03BA,
kappasymbolgreek: 0x03F0,
kapyeounmieumkorean: 0x3171,
kapyeounphieuphkorean: 0x3184,
kapyeounpieupkorean: 0x3178,
kapyeounssangpieupkorean: 0x3179,
karoriisquare: 0x330D,
kashidaautoarabic: 0x0640,
kashidaautonosidebearingarabic: 0x0640,
kasmallkatakana: 0x30F5,
kasquare: 0x3384,
kasraarabic: 0x0650,
kasratanarabic: 0x064D,
kastrokecyrillic: 0x049F,
katahiraprolongmarkhalfwidth: 0xFF70,
kaverticalstrokecyrillic: 0x049D,
kbopomofo: 0x310E,
kcalsquare: 0x3389,
kcaron: 0x01E9,
kcedilla: 0x0137,
kcircle: 0x24DA,
kcommaaccent: 0x0137,
kdotbelow: 0x1E33,
keharmenian: 0x0584,
kehiragana: 0x3051,
kekatakana: 0x30B1,
kekatakanahalfwidth: 0xFF79,
kenarmenian: 0x056F,
kesmallkatakana: 0x30F6,
kgreenlandic: 0x0138,
khabengali: 0x0996,
khacyrillic: 0x0445,
khadeva: 0x0916,
khagujarati: 0x0A96,
khagurmukhi: 0x0A16,
khaharabic: 0x062E,
khahfinalarabic: 0xFEA6,
khahinitialarabic: 0xFEA7,
khahmedialarabic: 0xFEA8,
kheicoptic: 0x03E7,
khhadeva: 0x0959,
khhagurmukhi: 0x0A59,
khieukhacirclekorean: 0x3278,
khieukhaparenkorean: 0x3218,
khieukhcirclekorean: 0x326A,
khieukhkorean: 0x314B,
khieukhparenkorean: 0x320A,
khokhaithai: 0x0E02,
khokhonthai: 0x0E05,
khokhuatthai: 0x0E03,
khokhwaithai: 0x0E04,
khomutthai: 0x0E5B,
khook: 0x0199,
khorakhangthai: 0x0E06,
khzsquare: 0x3391,
kihiragana: 0x304D,
kikatakana: 0x30AD,
kikatakanahalfwidth: 0xFF77,
kiroguramusquare: 0x3315,
kiromeetorusquare: 0x3316,
kirosquare: 0x3314,
kiyeokacirclekorean: 0x326E,
kiyeokaparenkorean: 0x320E,
kiyeokcirclekorean: 0x3260,
kiyeokkorean: 0x3131,
kiyeokparenkorean: 0x3200,
kiyeoksioskorean: 0x3133,
kjecyrillic: 0x045C,
klinebelow: 0x1E35,
klsquare: 0x3398,
kmcubedsquare: 0x33A6,
kmonospace: 0xFF4B,
kmsquaredsquare: 0x33A2,
kohiragana: 0x3053,
kohmsquare: 0x33C0,
kokaithai: 0x0E01,
kokatakana: 0x30B3,
kokatakanahalfwidth: 0xFF7A,
kooposquare: 0x331E,
koppacyrillic: 0x0481,
koreanstandardsymbol: 0x327F,
koroniscmb: 0x0343,
kparen: 0x24A6,
kpasquare: 0x33AA,
ksicyrillic: 0x046F,
ktsquare: 0x33CF,
kturned: 0x029E,
kuhiragana: 0x304F,
kukatakana: 0x30AF,
kukatakanahalfwidth: 0xFF78,
kvsquare: 0x33B8,
kwsquare: 0x33BE,
l: 0x006C,
labengali: 0x09B2,
lacute: 0x013A,
ladeva: 0x0932,
lagujarati: 0x0AB2,
lagurmukhi: 0x0A32,
lakkhangyaothai: 0x0E45,
lamaleffinalarabic: 0xFEFC,
lamalefhamzaabovefinalarabic: 0xFEF8,
lamalefhamzaaboveisolatedarabic: 0xFEF7,
lamalefhamzabelowfinalarabic: 0xFEFA,
lamalefhamzabelowisolatedarabic: 0xFEF9,
lamalefisolatedarabic: 0xFEFB,
lamalefmaddaabovefinalarabic: 0xFEF6,
lamalefmaddaaboveisolatedarabic: 0xFEF5,
lamarabic: 0x0644,
lambda: 0x03BB,
lambdastroke: 0x019B,
lamed: 0x05DC,
lameddagesh: 0xFB3C,
lameddageshhebrew: 0xFB3C,
lamedhebrew: 0x05DC,
lamfinalarabic: 0xFEDE,
lamhahinitialarabic: 0xFCCA,
laminitialarabic: 0xFEDF,
lamjeeminitialarabic: 0xFCC9,
lamkhahinitialarabic: 0xFCCB,
lamlamhehisolatedarabic: 0xFDF2,
lammedialarabic: 0xFEE0,
lammeemhahinitialarabic: 0xFD88,
lammeeminitialarabic: 0xFCCC,
largecircle: 0x25EF,
lbar: 0x019A,
lbelt: 0x026C,
lbopomofo: 0x310C,
lcaron: 0x013E,
lcedilla: 0x013C,
lcircle: 0x24DB,
lcircumflexbelow: 0x1E3D,
lcommaaccent: 0x013C,
ldot: 0x0140,
ldotaccent: 0x0140,
ldotbelow: 0x1E37,
ldotbelowmacron: 0x1E39,
leftangleabovecmb: 0x031A,
lefttackbelowcmb: 0x0318,
less: 0x003C,
lessequal: 0x2264,
lessequalorgreater: 0x22DA,
lessmonospace: 0xFF1C,
lessorequivalent: 0x2272,
lessorgreater: 0x2276,
lessoverequal: 0x2266,
lesssmall: 0xFE64,
lezh: 0x026E,
lfblock: 0x258C,
lhookretroflex: 0x026D,
lira: 0x20A4,
liwnarmenian: 0x056C,
lj: 0x01C9,
ljecyrillic: 0x0459,
ll: 0xF6C0,
lladeva: 0x0933,
llagujarati: 0x0AB3,
llinebelow: 0x1E3B,
llladeva: 0x0934,
llvocalicbengali: 0x09E1,
llvocalicdeva: 0x0961,
llvocalicvowelsignbengali: 0x09E3,
llvocalicvowelsigndeva: 0x0963,
lmiddletilde: 0x026B,
lmonospace: 0xFF4C,
lmsquare: 0x33D0,
lochulathai: 0x0E2C,
logicaland: 0x2227,
logicalnot: 0x00AC,
logicalnotreversed: 0x2310,
logicalor: 0x2228,
lolingthai: 0x0E25,
longs: 0x017F,
lowlinecenterline: 0xFE4E,
lowlinecmb: 0x0332,
lowlinedashed: 0xFE4D,
lozenge: 0x25CA,
lparen: 0x24A7,
lslash: 0x0142,
lsquare: 0x2113,
lsuperior: 0xF6EE,
ltshade: 0x2591,
luthai: 0x0E26,
lvocalicbengali: 0x098C,
lvocalicdeva: 0x090C,
lvocalicvowelsignbengali: 0x09E2,
lvocalicvowelsigndeva: 0x0962,
lxsquare: 0x33D3,
m: 0x006D,
mabengali: 0x09AE,
macron: 0x00AF,
macronbelowcmb: 0x0331,
macroncmb: 0x0304,
macronlowmod: 0x02CD,
macronmonospace: 0xFFE3,
macute: 0x1E3F,
madeva: 0x092E,
magujarati: 0x0AAE,
magurmukhi: 0x0A2E,
mahapakhhebrew: 0x05A4,
mahapakhlefthebrew: 0x05A4,
mahiragana: 0x307E,
maichattawalowleftthai: 0xF895,
maichattawalowrightthai: 0xF894,
maichattawathai: 0x0E4B,
maichattawaupperleftthai: 0xF893,
maieklowleftthai: 0xF88C,
maieklowrightthai: 0xF88B,
maiekthai: 0x0E48,
maiekupperleftthai: 0xF88A,
maihanakatleftthai: 0xF884,
maihanakatthai: 0x0E31,
maitaikhuleftthai: 0xF889,
maitaikhuthai: 0x0E47,
maitholowleftthai: 0xF88F,
maitholowrightthai: 0xF88E,
maithothai: 0x0E49,
maithoupperleftthai: 0xF88D,
maitrilowleftthai: 0xF892,
maitrilowrightthai: 0xF891,
maitrithai: 0x0E4A,
maitriupperleftthai: 0xF890,
maiyamokthai: 0x0E46,
makatakana: 0x30DE,
makatakanahalfwidth: 0xFF8F,
male: 0x2642,
mansyonsquare: 0x3347,
maqafhebrew: 0x05BE,
mars: 0x2642,
masoracirclehebrew: 0x05AF,
masquare: 0x3383,
mbopomofo: 0x3107,
mbsquare: 0x33D4,
mcircle: 0x24DC,
mcubedsquare: 0x33A5,
mdotaccent: 0x1E41,
mdotbelow: 0x1E43,
meemarabic: 0x0645,
meemfinalarabic: 0xFEE2,
meeminitialarabic: 0xFEE3,
meemmedialarabic: 0xFEE4,
meemmeeminitialarabic: 0xFCD1,
meemmeemisolatedarabic: 0xFC48,
meetorusquare: 0x334D,
mehiragana: 0x3081,
meizierasquare: 0x337E,
mekatakana: 0x30E1,
mekatakanahalfwidth: 0xFF92,
mem: 0x05DE,
memdagesh: 0xFB3E,
memdageshhebrew: 0xFB3E,
memhebrew: 0x05DE,
menarmenian: 0x0574,
merkhahebrew: 0x05A5,
merkhakefulahebrew: 0x05A6,
merkhakefulalefthebrew: 0x05A6,
merkhalefthebrew: 0x05A5,
mhook: 0x0271,
mhzsquare: 0x3392,
middledotkatakanahalfwidth: 0xFF65,
middot: 0x00B7,
mieumacirclekorean: 0x3272,
mieumaparenkorean: 0x3212,
mieumcirclekorean: 0x3264,
mieumkorean: 0x3141,
mieumpansioskorean: 0x3170,
mieumparenkorean: 0x3204,
mieumpieupkorean: 0x316E,
mieumsioskorean: 0x316F,
mihiragana: 0x307F,
mikatakana: 0x30DF,
mikatakanahalfwidth: 0xFF90,
minus: 0x2212,
minusbelowcmb: 0x0320,
minuscircle: 0x2296,
minusmod: 0x02D7,
minusplus: 0x2213,
minute: 0x2032,
miribaarusquare: 0x334A,
mirisquare: 0x3349,
mlonglegturned: 0x0270,
mlsquare: 0x3396,
mmcubedsquare: 0x33A3,
mmonospace: 0xFF4D,
mmsquaredsquare: 0x339F,
mohiragana: 0x3082,
mohmsquare: 0x33C1,
mokatakana: 0x30E2,
mokatakanahalfwidth: 0xFF93,
molsquare: 0x33D6,
momathai: 0x0E21,
moverssquare: 0x33A7,
moverssquaredsquare: 0x33A8,
mparen: 0x24A8,
mpasquare: 0x33AB,
mssquare: 0x33B3,
msuperior: 0xF6EF,
mturned: 0x026F,
mu: 0x00B5,
mu1: 0x00B5,
muasquare: 0x3382,
muchgreater: 0x226B,
muchless: 0x226A,
mufsquare: 0x338C,
mugreek: 0x03BC,
mugsquare: 0x338D,
muhiragana: 0x3080,
mukatakana: 0x30E0,
mukatakanahalfwidth: 0xFF91,
mulsquare: 0x3395,
multiply: 0x00D7,
mumsquare: 0x339B,
munahhebrew: 0x05A3,
munahlefthebrew: 0x05A3,
musicalnote: 0x266A,
musicalnotedbl: 0x266B,
musicflatsign: 0x266D,
musicsharpsign: 0x266F,
mussquare: 0x33B2,
muvsquare: 0x33B6,
muwsquare: 0x33BC,
mvmegasquare: 0x33B9,
mvsquare: 0x33B7,
mwmegasquare: 0x33BF,
mwsquare: 0x33BD,
n: 0x006E,
nabengali: 0x09A8,
nabla: 0x2207,
nacute: 0x0144,
nadeva: 0x0928,
nagujarati: 0x0AA8,
nagurmukhi: 0x0A28,
nahiragana: 0x306A,
nakatakana: 0x30CA,
nakatakanahalfwidth: 0xFF85,
napostrophe: 0x0149,
nasquare: 0x3381,
nbopomofo: 0x310B,
nbspace: 0x00A0,
ncaron: 0x0148,
ncedilla: 0x0146,
ncircle: 0x24DD,
ncircumflexbelow: 0x1E4B,
ncommaaccent: 0x0146,
ndotaccent: 0x1E45,
ndotbelow: 0x1E47,
nehiragana: 0x306D,
nekatakana: 0x30CD,
nekatakanahalfwidth: 0xFF88,
newsheqelsign: 0x20AA,
nfsquare: 0x338B,
ngabengali: 0x0999,
ngadeva: 0x0919,
ngagujarati: 0x0A99,
ngagurmukhi: 0x0A19,
ngonguthai: 0x0E07,
nhiragana: 0x3093,
nhookleft: 0x0272,
nhookretroflex: 0x0273,
nieunacirclekorean: 0x326F,
nieunaparenkorean: 0x320F,
nieuncieuckorean: 0x3135,
nieuncirclekorean: 0x3261,
nieunhieuhkorean: 0x3136,
nieunkorean: 0x3134,
nieunpansioskorean: 0x3168,
nieunparenkorean: 0x3201,
nieunsioskorean: 0x3167,
nieuntikeutkorean: 0x3166,
nihiragana: 0x306B,
nikatakana: 0x30CB,
nikatakanahalfwidth: 0xFF86,
nikhahitleftthai: 0xF899,
nikhahitthai: 0x0E4D,
nine: 0x0039,
ninearabic: 0x0669,
ninebengali: 0x09EF,
ninecircle: 0x2468,
ninecircleinversesansserif: 0x2792,
ninedeva: 0x096F,
ninegujarati: 0x0AEF,
ninegurmukhi: 0x0A6F,
ninehackarabic: 0x0669,
ninehangzhou: 0x3029,
nineideographicparen: 0x3228,
nineinferior: 0x2089,
ninemonospace: 0xFF19,
nineoldstyle: 0xF739,
nineparen: 0x247C,
nineperiod: 0x2490,
ninepersian: 0x06F9,
nineroman: 0x2178,
ninesuperior: 0x2079,
nineteencircle: 0x2472,
nineteenparen: 0x2486,
nineteenperiod: 0x249A,
ninethai: 0x0E59,
nj: 0x01CC,
njecyrillic: 0x045A,
nkatakana: 0x30F3,
nkatakanahalfwidth: 0xFF9D,
nlegrightlong: 0x019E,
nlinebelow: 0x1E49,
nmonospace: 0xFF4E,
nmsquare: 0x339A,
nnabengali: 0x09A3,
nnadeva: 0x0923,
nnagujarati: 0x0AA3,
nnagurmukhi: 0x0A23,
nnnadeva: 0x0929,
nohiragana: 0x306E,
nokatakana: 0x30CE,
nokatakanahalfwidth: 0xFF89,
nonbreakingspace: 0x00A0,
nonenthai: 0x0E13,
nonuthai: 0x0E19,
noonarabic: 0x0646,
noonfinalarabic: 0xFEE6,
noonghunnaarabic: 0x06BA,
noonghunnafinalarabic: 0xFB9F,
nooninitialarabic: 0xFEE7,
noonjeeminitialarabic: 0xFCD2,
noonjeemisolatedarabic: 0xFC4B,
noonmedialarabic: 0xFEE8,
noonmeeminitialarabic: 0xFCD5,
noonmeemisolatedarabic: 0xFC4E,
noonnoonfinalarabic: 0xFC8D,
notcontains: 0x220C,
notelement: 0x2209,
notelementof: 0x2209,
notequal: 0x2260,
notgreater: 0x226F,
notgreaternorequal: 0x2271,
notgreaternorless: 0x2279,
notidentical: 0x2262,
notless: 0x226E,
notlessnorequal: 0x2270,
notparallel: 0x2226,
notprecedes: 0x2280,
notsubset: 0x2284,
notsucceeds: 0x2281,
notsuperset: 0x2285,
nowarmenian: 0x0576,
nparen: 0x24A9,
nssquare: 0x33B1,
nsuperior: 0x207F,
ntilde: 0x00F1,
nu: 0x03BD,
nuhiragana: 0x306C,
nukatakana: 0x30CC,
nukatakanahalfwidth: 0xFF87,
nuktabengali: 0x09BC,
nuktadeva: 0x093C,
nuktagujarati: 0x0ABC,
nuktagurmukhi: 0x0A3C,
numbersign: 0x0023,
numbersignmonospace: 0xFF03,
numbersignsmall: 0xFE5F,
numeralsigngreek: 0x0374,
numeralsignlowergreek: 0x0375,
numero: 0x2116,
nun: 0x05E0,
nundagesh: 0xFB40,
nundageshhebrew: 0xFB40,
nunhebrew: 0x05E0,
nvsquare: 0x33B5,
nwsquare: 0x33BB,
nyabengali: 0x099E,
nyadeva: 0x091E,
nyagujarati: 0x0A9E,
nyagurmukhi: 0x0A1E,
o: 0x006F,
oacute: 0x00F3,
oangthai: 0x0E2D,
obarred: 0x0275,
obarredcyrillic: 0x04E9,
obarreddieresiscyrillic: 0x04EB,
obengali: 0x0993,
obopomofo: 0x311B,
obreve: 0x014F,
ocandradeva: 0x0911,
ocandragujarati: 0x0A91,
ocandravowelsigndeva: 0x0949,
ocandravowelsigngujarati: 0x0AC9,
ocaron: 0x01D2,
ocircle: 0x24DE,
ocircumflex: 0x00F4,
ocircumflexacute: 0x1ED1,
ocircumflexdotbelow: 0x1ED9,
ocircumflexgrave: 0x1ED3,
ocircumflexhookabove: 0x1ED5,
ocircumflextilde: 0x1ED7,
ocyrillic: 0x043E,
odblacute: 0x0151,
odblgrave: 0x020D,
odeva: 0x0913,
odieresis: 0x00F6,
odieresiscyrillic: 0x04E7,
odotbelow: 0x1ECD,
oe: 0x0153,
oekorean: 0x315A,
ogonek: 0x02DB,
ogonekcmb: 0x0328,
ograve: 0x00F2,
ogujarati: 0x0A93,
oharmenian: 0x0585,
ohiragana: 0x304A,
ohookabove: 0x1ECF,
ohorn: 0x01A1,
ohornacute: 0x1EDB,
ohorndotbelow: 0x1EE3,
ohorngrave: 0x1EDD,
ohornhookabove: 0x1EDF,
ohorntilde: 0x1EE1,
ohungarumlaut: 0x0151,
oi: 0x01A3,
oinvertedbreve: 0x020F,
okatakana: 0x30AA,
okatakanahalfwidth: 0xFF75,
okorean: 0x3157,
olehebrew: 0x05AB,
omacron: 0x014D,
omacronacute: 0x1E53,
omacrongrave: 0x1E51,
omdeva: 0x0950,
omega: 0x03C9,
omega1: 0x03D6,
omegacyrillic: 0x0461,
omegalatinclosed: 0x0277,
omegaroundcyrillic: 0x047B,
omegatitlocyrillic: 0x047D,
omegatonos: 0x03CE,
omgujarati: 0x0AD0,
omicron: 0x03BF,
omicrontonos: 0x03CC,
omonospace: 0xFF4F,
one: 0x0031,
onearabic: 0x0661,
onebengali: 0x09E7,
onecircle: 0x2460,
onecircleinversesansserif: 0x278A,
onedeva: 0x0967,
onedotenleader: 0x2024,
oneeighth: 0x215B,
onefitted: 0xF6DC,
onegujarati: 0x0AE7,
onegurmukhi: 0x0A67,
onehackarabic: 0x0661,
onehalf: 0x00BD,
onehangzhou: 0x3021,
oneideographicparen: 0x3220,
oneinferior: 0x2081,
onemonospace: 0xFF11,
onenumeratorbengali: 0x09F4,
oneoldstyle: 0xF731,
oneparen: 0x2474,
oneperiod: 0x2488,
onepersian: 0x06F1,
onequarter: 0x00BC,
oneroman: 0x2170,
onesuperior: 0x00B9,
onethai: 0x0E51,
onethird: 0x2153,
oogonek: 0x01EB,
oogonekmacron: 0x01ED,
oogurmukhi: 0x0A13,
oomatragurmukhi: 0x0A4B,
oopen: 0x0254,
oparen: 0x24AA,
openbullet: 0x25E6,
option: 0x2325,
ordfeminine: 0x00AA,
ordmasculine: 0x00BA,
orthogonal: 0x221F,
oshortdeva: 0x0912,
oshortvowelsigndeva: 0x094A,
oslash: 0x00F8,
oslashacute: 0x01FF,
osmallhiragana: 0x3049,
osmallkatakana: 0x30A9,
osmallkatakanahalfwidth: 0xFF6B,
ostrokeacute: 0x01FF,
osuperior: 0xF6F0,
otcyrillic: 0x047F,
otilde: 0x00F5,
otildeacute: 0x1E4D,
otildedieresis: 0x1E4F,
oubopomofo: 0x3121,
overline: 0x203E,
overlinecenterline: 0xFE4A,
overlinecmb: 0x0305,
overlinedashed: 0xFE49,
overlinedblwavy: 0xFE4C,
overlinewavy: 0xFE4B,
overscore: 0x00AF,
ovowelsignbengali: 0x09CB,
ovowelsigndeva: 0x094B,
ovowelsigngujarati: 0x0ACB,
p: 0x0070,
paampssquare: 0x3380,
paasentosquare: 0x332B,
pabengali: 0x09AA,
pacute: 0x1E55,
padeva: 0x092A,
pagedown: 0x21DF,
pageup: 0x21DE,
pagujarati: 0x0AAA,
pagurmukhi: 0x0A2A,
pahiragana: 0x3071,
paiyannoithai: 0x0E2F,
pakatakana: 0x30D1,
palatalizationcyrilliccmb: 0x0484,
palochkacyrillic: 0x04C0,
pansioskorean: 0x317F,
paragraph: 0x00B6,
parallel: 0x2225,
parenleft: 0x0028,
parenleftaltonearabic: 0xFD3E,
parenleftbt: 0xF8ED,
parenleftex: 0xF8EC,
parenleftinferior: 0x208D,
parenleftmonospace: 0xFF08,
parenleftsmall: 0xFE59,
parenleftsuperior: 0x207D,
parenlefttp: 0xF8EB,
parenleftvertical: 0xFE35,
parenright: 0x0029,
parenrightaltonearabic: 0xFD3F,
parenrightbt: 0xF8F8,
parenrightex: 0xF8F7,
parenrightinferior: 0x208E,
parenrightmonospace: 0xFF09,
parenrightsmall: 0xFE5A,
parenrightsuperior: 0x207E,
parenrighttp: 0xF8F6,
parenrightvertical: 0xFE36,
partialdiff: 0x2202,
paseqhebrew: 0x05C0,
pashtahebrew: 0x0599,
pasquare: 0x33A9,
patah: 0x05B7,
patah11: 0x05B7,
patah1d: 0x05B7,
patah2a: 0x05B7,
patahhebrew: 0x05B7,
patahnarrowhebrew: 0x05B7,
patahquarterhebrew: 0x05B7,
patahwidehebrew: 0x05B7,
pazerhebrew: 0x05A1,
pbopomofo: 0x3106,
pcircle: 0x24DF,
pdotaccent: 0x1E57,
pe: 0x05E4,
pecyrillic: 0x043F,
pedagesh: 0xFB44,
pedageshhebrew: 0xFB44,
peezisquare: 0x333B,
pefinaldageshhebrew: 0xFB43,
peharabic: 0x067E,
peharmenian: 0x057A,
pehebrew: 0x05E4,
pehfinalarabic: 0xFB57,
pehinitialarabic: 0xFB58,
pehiragana: 0x307A,
pehmedialarabic: 0xFB59,
pekatakana: 0x30DA,
pemiddlehookcyrillic: 0x04A7,
perafehebrew: 0xFB4E,
percent: 0x0025,
percentarabic: 0x066A,
percentmonospace: 0xFF05,
percentsmall: 0xFE6A,
period: 0x002E,
periodarmenian: 0x0589,
periodcentered: 0x00B7,
periodhalfwidth: 0xFF61,
periodinferior: 0xF6E7,
periodmonospace: 0xFF0E,
periodsmall: 0xFE52,
periodsuperior: 0xF6E8,
perispomenigreekcmb: 0x0342,
perpendicular: 0x22A5,
perthousand: 0x2030,
peseta: 0x20A7,
pfsquare: 0x338A,
phabengali: 0x09AB,
phadeva: 0x092B,
phagujarati: 0x0AAB,
phagurmukhi: 0x0A2B,
phi: 0x03C6,
phi1: 0x03D5,
phieuphacirclekorean: 0x327A,
phieuphaparenkorean: 0x321A,
phieuphcirclekorean: 0x326C,
phieuphkorean: 0x314D,
phieuphparenkorean: 0x320C,
philatin: 0x0278,
phinthuthai: 0x0E3A,
phisymbolgreek: 0x03D5,
phook: 0x01A5,
phophanthai: 0x0E1E,
phophungthai: 0x0E1C,
phosamphaothai: 0x0E20,
pi: 0x03C0,
pieupacirclekorean: 0x3273,
pieupaparenkorean: 0x3213,
pieupcieuckorean: 0x3176,
pieupcirclekorean: 0x3265,
pieupkiyeokkorean: 0x3172,
pieupkorean: 0x3142,
pieupparenkorean: 0x3205,
pieupsioskiyeokkorean: 0x3174,
pieupsioskorean: 0x3144,
pieupsiostikeutkorean: 0x3175,
pieupthieuthkorean: 0x3177,
pieuptikeutkorean: 0x3173,
pihiragana: 0x3074,
pikatakana: 0x30D4,
pisymbolgreek: 0x03D6,
piwrarmenian: 0x0583,
plus: 0x002B,
plusbelowcmb: 0x031F,
pluscircle: 0x2295,
plusminus: 0x00B1,
plusmod: 0x02D6,
plusmonospace: 0xFF0B,
plussmall: 0xFE62,
plussuperior: 0x207A,
pmonospace: 0xFF50,
pmsquare: 0x33D8,
pohiragana: 0x307D,
pointingindexdownwhite: 0x261F,
pointingindexleftwhite: 0x261C,
pointingindexrightwhite: 0x261E,
pointingindexupwhite: 0x261D,
pokatakana: 0x30DD,
poplathai: 0x0E1B,
postalmark: 0x3012,
postalmarkface: 0x3020,
pparen: 0x24AB,
precedes: 0x227A,
prescription: 0x211E,
primemod: 0x02B9,
primereversed: 0x2035,
product: 0x220F,
projective: 0x2305,
prolongedkana: 0x30FC,
propellor: 0x2318,
propersubset: 0x2282,
propersuperset: 0x2283,
proportion: 0x2237,
proportional: 0x221D,
psi: 0x03C8,
psicyrillic: 0x0471,
psilipneumatacyrilliccmb: 0x0486,
pssquare: 0x33B0,
puhiragana: 0x3077,
pukatakana: 0x30D7,
pvsquare: 0x33B4,
pwsquare: 0x33BA,
q: 0x0071,
qadeva: 0x0958,
qadmahebrew: 0x05A8,
qafarabic: 0x0642,
qaffinalarabic: 0xFED6,
qafinitialarabic: 0xFED7,
qafmedialarabic: 0xFED8,
qamats: 0x05B8,
qamats10: 0x05B8,
qamats1a: 0x05B8,
qamats1c: 0x05B8,
qamats27: 0x05B8,
qamats29: 0x05B8,
qamats33: 0x05B8,
qamatsde: 0x05B8,
qamatshebrew: 0x05B8,
qamatsnarrowhebrew: 0x05B8,
qamatsqatanhebrew: 0x05B8,
qamatsqatannarrowhebrew: 0x05B8,
qamatsqatanquarterhebrew: 0x05B8,
qamatsqatanwidehebrew: 0x05B8,
qamatsquarterhebrew: 0x05B8,
qamatswidehebrew: 0x05B8,
qarneyparahebrew: 0x059F,
qbopomofo: 0x3111,
qcircle: 0x24E0,
qhook: 0x02A0,
qmonospace: 0xFF51,
qof: 0x05E7,
qofdagesh: 0xFB47,
qofdageshhebrew: 0xFB47,
qofhebrew: 0x05E7,
qparen: 0x24AC,
quarternote: 0x2669,
qubuts: 0x05BB,
qubuts18: 0x05BB,
qubuts25: 0x05BB,
qubuts31: 0x05BB,
qubutshebrew: 0x05BB,
qubutsnarrowhebrew: 0x05BB,
qubutsquarterhebrew: 0x05BB,
qubutswidehebrew: 0x05BB,
question: 0x003F,
questionarabic: 0x061F,
questionarmenian: 0x055E,
questiondown: 0x00BF,
questiondownsmall: 0xF7BF,
questiongreek: 0x037E,
questionmonospace: 0xFF1F,
questionsmall: 0xF73F,
quotedbl: 0x0022,
quotedblbase: 0x201E,
quotedblleft: 0x201C,
quotedblmonospace: 0xFF02,
quotedblprime: 0x301E,
quotedblprimereversed: 0x301D,
quotedblright: 0x201D,
quoteleft: 0x2018,
quoteleftreversed: 0x201B,
quotereversed: 0x201B,
quoteright: 0x2019,
quoterightn: 0x0149,
quotesinglbase: 0x201A,
quotesingle: 0x0027,
quotesinglemonospace: 0xFF07,
r: 0x0072,
raarmenian: 0x057C,
rabengali: 0x09B0,
racute: 0x0155,
radeva: 0x0930,
radical: 0x221A,
radicalex: 0xF8E5,
radoverssquare: 0x33AE,
radoverssquaredsquare: 0x33AF,
radsquare: 0x33AD,
rafe: 0x05BF,
rafehebrew: 0x05BF,
ragujarati: 0x0AB0,
ragurmukhi: 0x0A30,
rahiragana: 0x3089,
rakatakana: 0x30E9,
rakatakanahalfwidth: 0xFF97,
ralowerdiagonalbengali: 0x09F1,
ramiddlediagonalbengali: 0x09F0,
ramshorn: 0x0264,
ratio: 0x2236,
rbopomofo: 0x3116,
rcaron: 0x0159,
rcedilla: 0x0157,
rcircle: 0x24E1,
rcommaaccent: 0x0157,
rdblgrave: 0x0211,
rdotaccent: 0x1E59,
rdotbelow: 0x1E5B,
rdotbelowmacron: 0x1E5D,
referencemark: 0x203B,
reflexsubset: 0x2286,
reflexsuperset: 0x2287,
registered: 0x00AE,
registersans: 0xF8E8,
registerserif: 0xF6DA,
reharabic: 0x0631,
reharmenian: 0x0580,
rehfinalarabic: 0xFEAE,
rehiragana: 0x308C,
rekatakana: 0x30EC,
rekatakanahalfwidth: 0xFF9A,
resh: 0x05E8,
reshdageshhebrew: 0xFB48,
reshhebrew: 0x05E8,
reversedtilde: 0x223D,
reviahebrew: 0x0597,
reviamugrashhebrew: 0x0597,
revlogicalnot: 0x2310,
rfishhook: 0x027E,
rfishhookreversed: 0x027F,
rhabengali: 0x09DD,
rhadeva: 0x095D,
rho: 0x03C1,
rhook: 0x027D,
rhookturned: 0x027B,
rhookturnedsuperior: 0x02B5,
rhosymbolgreek: 0x03F1,
rhotichookmod: 0x02DE,
rieulacirclekorean: 0x3271,
rieulaparenkorean: 0x3211,
rieulcirclekorean: 0x3263,
rieulhieuhkorean: 0x3140,
rieulkiyeokkorean: 0x313A,
rieulkiyeoksioskorean: 0x3169,
rieulkorean: 0x3139,
rieulmieumkorean: 0x313B,
rieulpansioskorean: 0x316C,
rieulparenkorean: 0x3203,
rieulphieuphkorean: 0x313F,
rieulpieupkorean: 0x313C,
rieulpieupsioskorean: 0x316B,
rieulsioskorean: 0x313D,
rieulthieuthkorean: 0x313E,
rieultikeutkorean: 0x316A,
rieulyeorinhieuhkorean: 0x316D,
rightangle: 0x221F,
righttackbelowcmb: 0x0319,
righttriangle: 0x22BF,
rihiragana: 0x308A,
rikatakana: 0x30EA,
rikatakanahalfwidth: 0xFF98,
ring: 0x02DA,
ringbelowcmb: 0x0325,
ringcmb: 0x030A,
ringhalfleft: 0x02BF,
ringhalfleftarmenian: 0x0559,
ringhalfleftbelowcmb: 0x031C,
ringhalfleftcentered: 0x02D3,
ringhalfright: 0x02BE,
ringhalfrightbelowcmb: 0x0339,
ringhalfrightcentered: 0x02D2,
rinvertedbreve: 0x0213,
rittorusquare: 0x3351,
rlinebelow: 0x1E5F,
rlongleg: 0x027C,
rlonglegturned: 0x027A,
rmonospace: 0xFF52,
rohiragana: 0x308D,
rokatakana: 0x30ED,
rokatakanahalfwidth: 0xFF9B,
roruathai: 0x0E23,
rparen: 0x24AD,
rrabengali: 0x09DC,
rradeva: 0x0931,
rragurmukhi: 0x0A5C,
rreharabic: 0x0691,
rrehfinalarabic: 0xFB8D,
rrvocalicbengali: 0x09E0,
rrvocalicdeva: 0x0960,
rrvocalicgujarati: 0x0AE0,
rrvocalicvowelsignbengali: 0x09C4,
rrvocalicvowelsigndeva: 0x0944,
rrvocalicvowelsigngujarati: 0x0AC4,
rsuperior: 0xF6F1,
rtblock: 0x2590,
rturned: 0x0279,
rturnedsuperior: 0x02B4,
ruhiragana: 0x308B,
rukatakana: 0x30EB,
rukatakanahalfwidth: 0xFF99,
rupeemarkbengali: 0x09F2,
rupeesignbengali: 0x09F3,
rupiah: 0xF6DD,
ruthai: 0x0E24,
rvocalicbengali: 0x098B,
rvocalicdeva: 0x090B,
rvocalicgujarati: 0x0A8B,
rvocalicvowelsignbengali: 0x09C3,
rvocalicvowelsigndeva: 0x0943,
rvocalicvowelsigngujarati: 0x0AC3,
s: 0x0073,
sabengali: 0x09B8,
sacute: 0x015B,
sacutedotaccent: 0x1E65,
sadarabic: 0x0635,
sadeva: 0x0938,
sadfinalarabic: 0xFEBA,
sadinitialarabic: 0xFEBB,
sadmedialarabic: 0xFEBC,
sagujarati: 0x0AB8,
sagurmukhi: 0x0A38,
sahiragana: 0x3055,
sakatakana: 0x30B5,
sakatakanahalfwidth: 0xFF7B,
sallallahoualayhewasallamarabic: 0xFDFA,
samekh: 0x05E1,
samekhdagesh: 0xFB41,
samekhdageshhebrew: 0xFB41,
samekhhebrew: 0x05E1,
saraaathai: 0x0E32,
saraaethai: 0x0E41,
saraaimaimalaithai: 0x0E44,
saraaimaimuanthai: 0x0E43,
saraamthai: 0x0E33,
saraathai: 0x0E30,
saraethai: 0x0E40,
saraiileftthai: 0xF886,
saraiithai: 0x0E35,
saraileftthai: 0xF885,
saraithai: 0x0E34,
saraothai: 0x0E42,
saraueeleftthai: 0xF888,
saraueethai: 0x0E37,
saraueleftthai: 0xF887,
sarauethai: 0x0E36,
sarauthai: 0x0E38,
sarauuthai: 0x0E39,
sbopomofo: 0x3119,
scaron: 0x0161,
scarondotaccent: 0x1E67,
scedilla: 0x015F,
schwa: 0x0259,
schwacyrillic: 0x04D9,
schwadieresiscyrillic: 0x04DB,
schwahook: 0x025A,
scircle: 0x24E2,
scircumflex: 0x015D,
scommaaccent: 0x0219,
sdotaccent: 0x1E61,
sdotbelow: 0x1E63,
sdotbelowdotaccent: 0x1E69,
seagullbelowcmb: 0x033C,
second: 0x2033,
secondtonechinese: 0x02CA,
section: 0x00A7,
seenarabic: 0x0633,
seenfinalarabic: 0xFEB2,
seeninitialarabic: 0xFEB3,
seenmedialarabic: 0xFEB4,
segol: 0x05B6,
segol13: 0x05B6,
segol1f: 0x05B6,
segol2c: 0x05B6,
segolhebrew: 0x05B6,
segolnarrowhebrew: 0x05B6,
segolquarterhebrew: 0x05B6,
segoltahebrew: 0x0592,
segolwidehebrew: 0x05B6,
seharmenian: 0x057D,
sehiragana: 0x305B,
sekatakana: 0x30BB,
sekatakanahalfwidth: 0xFF7E,
semicolon: 0x003B,
semicolonarabic: 0x061B,
semicolonmonospace: 0xFF1B,
semicolonsmall: 0xFE54,
semivoicedmarkkana: 0x309C,
semivoicedmarkkanahalfwidth: 0xFF9F,
sentisquare: 0x3322,
sentosquare: 0x3323,
seven: 0x0037,
sevenarabic: 0x0667,
sevenbengali: 0x09ED,
sevencircle: 0x2466,
sevencircleinversesansserif: 0x2790,
sevendeva: 0x096D,
seveneighths: 0x215E,
sevengujarati: 0x0AED,
sevengurmukhi: 0x0A6D,
sevenhackarabic: 0x0667,
sevenhangzhou: 0x3027,
sevenideographicparen: 0x3226,
seveninferior: 0x2087,
sevenmonospace: 0xFF17,
sevenoldstyle: 0xF737,
sevenparen: 0x247A,
sevenperiod: 0x248E,
sevenpersian: 0x06F7,
sevenroman: 0x2176,
sevensuperior: 0x2077,
seventeencircle: 0x2470,
seventeenparen: 0x2484,
seventeenperiod: 0x2498,
seventhai: 0x0E57,
sfthyphen: 0x00AD,
shaarmenian: 0x0577,
shabengali: 0x09B6,
shacyrillic: 0x0448,
shaddaarabic: 0x0651,
shaddadammaarabic: 0xFC61,
shaddadammatanarabic: 0xFC5E,
shaddafathaarabic: 0xFC60,
shaddakasraarabic: 0xFC62,
shaddakasratanarabic: 0xFC5F,
shade: 0x2592,
shadedark: 0x2593,
shadelight: 0x2591,
shademedium: 0x2592,
shadeva: 0x0936,
shagujarati: 0x0AB6,
shagurmukhi: 0x0A36,
shalshelethebrew: 0x0593,
shbopomofo: 0x3115,
shchacyrillic: 0x0449,
sheenarabic: 0x0634,
sheenfinalarabic: 0xFEB6,
sheeninitialarabic: 0xFEB7,
sheenmedialarabic: 0xFEB8,
sheicoptic: 0x03E3,
sheqel: 0x20AA,
sheqelhebrew: 0x20AA,
sheva: 0x05B0,
sheva115: 0x05B0,
sheva15: 0x05B0,
sheva22: 0x05B0,
sheva2e: 0x05B0,
shevahebrew: 0x05B0,
shevanarrowhebrew: 0x05B0,
shevaquarterhebrew: 0x05B0,
shevawidehebrew: 0x05B0,
shhacyrillic: 0x04BB,
shimacoptic: 0x03ED,
shin: 0x05E9,
shindagesh: 0xFB49,
shindageshhebrew: 0xFB49,
shindageshshindot: 0xFB2C,
shindageshshindothebrew: 0xFB2C,
shindageshsindot: 0xFB2D,
shindageshsindothebrew: 0xFB2D,
shindothebrew: 0x05C1,
shinhebrew: 0x05E9,
shinshindot: 0xFB2A,
shinshindothebrew: 0xFB2A,
shinsindot: 0xFB2B,
shinsindothebrew: 0xFB2B,
shook: 0x0282,
sigma: 0x03C3,
sigma1: 0x03C2,
sigmafinal: 0x03C2,
sigmalunatesymbolgreek: 0x03F2,
sihiragana: 0x3057,
sikatakana: 0x30B7,
sikatakanahalfwidth: 0xFF7C,
siluqhebrew: 0x05BD,
siluqlefthebrew: 0x05BD,
similar: 0x223C,
sindothebrew: 0x05C2,
siosacirclekorean: 0x3274,
siosaparenkorean: 0x3214,
sioscieuckorean: 0x317E,
sioscirclekorean: 0x3266,
sioskiyeokkorean: 0x317A,
sioskorean: 0x3145,
siosnieunkorean: 0x317B,
siosparenkorean: 0x3206,
siospieupkorean: 0x317D,
siostikeutkorean: 0x317C,
six: 0x0036,
sixarabic: 0x0666,
sixbengali: 0x09EC,
sixcircle: 0x2465,
sixcircleinversesansserif: 0x278F,
sixdeva: 0x096C,
sixgujarati: 0x0AEC,
sixgurmukhi: 0x0A6C,
sixhackarabic: 0x0666,
sixhangzhou: 0x3026,
sixideographicparen: 0x3225,
sixinferior: 0x2086,
sixmonospace: 0xFF16,
sixoldstyle: 0xF736,
sixparen: 0x2479,
sixperiod: 0x248D,
sixpersian: 0x06F6,
sixroman: 0x2175,
sixsuperior: 0x2076,
sixteencircle: 0x246F,
sixteencurrencydenominatorbengali: 0x09F9,
sixteenparen: 0x2483,
sixteenperiod: 0x2497,
sixthai: 0x0E56,
slash: 0x002F,
slashmonospace: 0xFF0F,
slong: 0x017F,
slongdotaccent: 0x1E9B,
smileface: 0x263A,
smonospace: 0xFF53,
sofpasuqhebrew: 0x05C3,
softhyphen: 0x00AD,
softsigncyrillic: 0x044C,
sohiragana: 0x305D,
sokatakana: 0x30BD,
sokatakanahalfwidth: 0xFF7F,
soliduslongoverlaycmb: 0x0338,
solidusshortoverlaycmb: 0x0337,
sorusithai: 0x0E29,
sosalathai: 0x0E28,
sosothai: 0x0E0B,
sosuathai: 0x0E2A,
space: 0x0020,
spacehackarabic: 0x0020,
spade: 0x2660,
spadesuitblack: 0x2660,
spadesuitwhite: 0x2664,
sparen: 0x24AE,
squarebelowcmb: 0x033B,
squarecc: 0x33C4,
squarecm: 0x339D,
squarediagonalcrosshatchfill: 0x25A9,
squarehorizontalfill: 0x25A4,
squarekg: 0x338F,
squarekm: 0x339E,
squarekmcapital: 0x33CE,
squareln: 0x33D1,
squarelog: 0x33D2,
squaremg: 0x338E,
squaremil: 0x33D5,
squaremm: 0x339C,
squaremsquared: 0x33A1,
squareorthogonalcrosshatchfill: 0x25A6,
squareupperlefttolowerrightfill: 0x25A7,
squareupperrighttolowerleftfill: 0x25A8,
squareverticalfill: 0x25A5,
squarewhitewithsmallblack: 0x25A3,
srsquare: 0x33DB,
ssabengali: 0x09B7,
ssadeva: 0x0937,
ssagujarati: 0x0AB7,
ssangcieuckorean: 0x3149,
ssanghieuhkorean: 0x3185,
ssangieungkorean: 0x3180,
ssangkiyeokkorean: 0x3132,
ssangnieunkorean: 0x3165,
ssangpieupkorean: 0x3143,
ssangsioskorean: 0x3146,
ssangtikeutkorean: 0x3138,
ssuperior: 0xF6F2,
sterling: 0x00A3,
sterlingmonospace: 0xFFE1,
strokelongoverlaycmb: 0x0336,
strokeshortoverlaycmb: 0x0335,
subset: 0x2282,
subsetnotequal: 0x228A,
subsetorequal: 0x2286,
succeeds: 0x227B,
suchthat: 0x220B,
suhiragana: 0x3059,
sukatakana: 0x30B9,
sukatakanahalfwidth: 0xFF7D,
sukunarabic: 0x0652,
summation: 0x2211,
sun: 0x263C,
superset: 0x2283,
supersetnotequal: 0x228B,
supersetorequal: 0x2287,
svsquare: 0x33DC,
syouwaerasquare: 0x337C,
t: 0x0074,
tabengali: 0x09A4,
tackdown: 0x22A4,
tackleft: 0x22A3,
tadeva: 0x0924,
tagujarati: 0x0AA4,
tagurmukhi: 0x0A24,
taharabic: 0x0637,
tahfinalarabic: 0xFEC2,
tahinitialarabic: 0xFEC3,
tahiragana: 0x305F,
tahmedialarabic: 0xFEC4,
taisyouerasquare: 0x337D,
takatakana: 0x30BF,
takatakanahalfwidth: 0xFF80,
tatweelarabic: 0x0640,
tau: 0x03C4,
tav: 0x05EA,
tavdages: 0xFB4A,
tavdagesh: 0xFB4A,
tavdageshhebrew: 0xFB4A,
tavhebrew: 0x05EA,
tbar: 0x0167,
tbopomofo: 0x310A,
tcaron: 0x0165,
tccurl: 0x02A8,
tcedilla: 0x0163,
tcheharabic: 0x0686,
tchehfinalarabic: 0xFB7B,
tchehinitialarabic: 0xFB7C,
tchehmedialarabic: 0xFB7D,
tcircle: 0x24E3,
tcircumflexbelow: 0x1E71,
tcommaaccent: 0x0163,
tdieresis: 0x1E97,
tdotaccent: 0x1E6B,
tdotbelow: 0x1E6D,
tecyrillic: 0x0442,
tedescendercyrillic: 0x04AD,
teharabic: 0x062A,
tehfinalarabic: 0xFE96,
tehhahinitialarabic: 0xFCA2,
tehhahisolatedarabic: 0xFC0C,
tehinitialarabic: 0xFE97,
tehiragana: 0x3066,
tehjeeminitialarabic: 0xFCA1,
tehjeemisolatedarabic: 0xFC0B,
tehmarbutaarabic: 0x0629,
tehmarbutafinalarabic: 0xFE94,
tehmedialarabic: 0xFE98,
tehmeeminitialarabic: 0xFCA4,
tehmeemisolatedarabic: 0xFC0E,
tehnoonfinalarabic: 0xFC73,
tekatakana: 0x30C6,
tekatakanahalfwidth: 0xFF83,
telephone: 0x2121,
telephoneblack: 0x260E,
telishagedolahebrew: 0x05A0,
telishaqetanahebrew: 0x05A9,
tencircle: 0x2469,
tenideographicparen: 0x3229,
tenparen: 0x247D,
tenperiod: 0x2491,
tenroman: 0x2179,
tesh: 0x02A7,
tet: 0x05D8,
tetdagesh: 0xFB38,
tetdageshhebrew: 0xFB38,
tethebrew: 0x05D8,
tetsecyrillic: 0x04B5,
tevirhebrew: 0x059B,
tevirlefthebrew: 0x059B,
thabengali: 0x09A5,
thadeva: 0x0925,
thagujarati: 0x0AA5,
thagurmukhi: 0x0A25,
thalarabic: 0x0630,
thalfinalarabic: 0xFEAC,
thanthakhatlowleftthai: 0xF898,
thanthakhatlowrightthai: 0xF897,
thanthakhatthai: 0x0E4C,
thanthakhatupperleftthai: 0xF896,
theharabic: 0x062B,
thehfinalarabic: 0xFE9A,
thehinitialarabic: 0xFE9B,
thehmedialarabic: 0xFE9C,
thereexists: 0x2203,
therefore: 0x2234,
theta: 0x03B8,
theta1: 0x03D1,
thetasymbolgreek: 0x03D1,
thieuthacirclekorean: 0x3279,
thieuthaparenkorean: 0x3219,
thieuthcirclekorean: 0x326B,
thieuthkorean: 0x314C,
thieuthparenkorean: 0x320B,
thirteencircle: 0x246C,
thirteenparen: 0x2480,
thirteenperiod: 0x2494,
thonangmonthothai: 0x0E11,
thook: 0x01AD,
thophuthaothai: 0x0E12,
thorn: 0x00FE,
thothahanthai: 0x0E17,
thothanthai: 0x0E10,
thothongthai: 0x0E18,
thothungthai: 0x0E16,
thousandcyrillic: 0x0482,
thousandsseparatorarabic: 0x066C,
thousandsseparatorpersian: 0x066C,
three: 0x0033,
threearabic: 0x0663,
threebengali: 0x09E9,
threecircle: 0x2462,
threecircleinversesansserif: 0x278C,
threedeva: 0x0969,
threeeighths: 0x215C,
threegujarati: 0x0AE9,
threegurmukhi: 0x0A69,
threehackarabic: 0x0663,
threehangzhou: 0x3023,
threeideographicparen: 0x3222,
threeinferior: 0x2083,
threemonospace: 0xFF13,
threenumeratorbengali: 0x09F6,
threeoldstyle: 0xF733,
threeparen: 0x2476,
threeperiod: 0x248A,
threepersian: 0x06F3,
threequarters: 0x00BE,
threequartersemdash: 0xF6DE,
threeroman: 0x2172,
threesuperior: 0x00B3,
threethai: 0x0E53,
thzsquare: 0x3394,
tihiragana: 0x3061,
tikatakana: 0x30C1,
tikatakanahalfwidth: 0xFF81,
tikeutacirclekorean: 0x3270,
tikeutaparenkorean: 0x3210,
tikeutcirclekorean: 0x3262,
tikeutkorean: 0x3137,
tikeutparenkorean: 0x3202,
tilde: 0x02DC,
tildebelowcmb: 0x0330,
tildecmb: 0x0303,
tildecomb: 0x0303,
tildedoublecmb: 0x0360,
tildeoperator: 0x223C,
tildeoverlaycmb: 0x0334,
tildeverticalcmb: 0x033E,
timescircle: 0x2297,
tipehahebrew: 0x0596,
tipehalefthebrew: 0x0596,
tippigurmukhi: 0x0A70,
titlocyrilliccmb: 0x0483,
tiwnarmenian: 0x057F,
tlinebelow: 0x1E6F,
tmonospace: 0xFF54,
toarmenian: 0x0569,
tohiragana: 0x3068,
tokatakana: 0x30C8,
tokatakanahalfwidth: 0xFF84,
tonebarextrahighmod: 0x02E5,
tonebarextralowmod: 0x02E9,
tonebarhighmod: 0x02E6,
tonebarlowmod: 0x02E8,
tonebarmidmod: 0x02E7,
tonefive: 0x01BD,
tonesix: 0x0185,
tonetwo: 0x01A8,
tonos: 0x0384,
tonsquare: 0x3327,
topatakthai: 0x0E0F,
tortoiseshellbracketleft: 0x3014,
tortoiseshellbracketleftsmall: 0xFE5D,
tortoiseshellbracketleftvertical: 0xFE39,
tortoiseshellbracketright: 0x3015,
tortoiseshellbracketrightsmall: 0xFE5E,
tortoiseshellbracketrightvertical: 0xFE3A,
totaothai: 0x0E15,
tpalatalhook: 0x01AB,
tparen: 0x24AF,
trademark: 0x2122,
trademarksans: 0xF8EA,
trademarkserif: 0xF6DB,
tretroflexhook: 0x0288,
triagdn: 0x25BC,
triaglf: 0x25C4,
triagrt: 0x25BA,
triagup: 0x25B2,
ts: 0x02A6,
tsadi: 0x05E6,
tsadidagesh: 0xFB46,
tsadidageshhebrew: 0xFB46,
tsadihebrew: 0x05E6,
tsecyrillic: 0x0446,
tsere: 0x05B5,
tsere12: 0x05B5,
tsere1e: 0x05B5,
tsere2b: 0x05B5,
tserehebrew: 0x05B5,
tserenarrowhebrew: 0x05B5,
tserequarterhebrew: 0x05B5,
tserewidehebrew: 0x05B5,
tshecyrillic: 0x045B,
tsuperior: 0xF6F3,
ttabengali: 0x099F,
ttadeva: 0x091F,
ttagujarati: 0x0A9F,
ttagurmukhi: 0x0A1F,
tteharabic: 0x0679,
ttehfinalarabic: 0xFB67,
ttehinitialarabic: 0xFB68,
ttehmedialarabic: 0xFB69,
tthabengali: 0x09A0,
tthadeva: 0x0920,
tthagujarati: 0x0AA0,
tthagurmukhi: 0x0A20,
tturned: 0x0287,
tuhiragana: 0x3064,
tukatakana: 0x30C4,
tukatakanahalfwidth: 0xFF82,
tusmallhiragana: 0x3063,
tusmallkatakana: 0x30C3,
tusmallkatakanahalfwidth: 0xFF6F,
twelvecircle: 0x246B,
twelveparen: 0x247F,
twelveperiod: 0x2493,
twelveroman: 0x217B,
twentycircle: 0x2473,
twentyhangzhou: 0x5344,
twentyparen: 0x2487,
twentyperiod: 0x249B,
two: 0x0032,
twoarabic: 0x0662,
twobengali: 0x09E8,
twocircle: 0x2461,
twocircleinversesansserif: 0x278B,
twodeva: 0x0968,
twodotenleader: 0x2025,
twodotleader: 0x2025,
twodotleadervertical: 0xFE30,
twogujarati: 0x0AE8,
twogurmukhi: 0x0A68,
twohackarabic: 0x0662,
twohangzhou: 0x3022,
twoideographicparen: 0x3221,
twoinferior: 0x2082,
twomonospace: 0xFF12,
twonumeratorbengali: 0x09F5,
twooldstyle: 0xF732,
twoparen: 0x2475,
twoperiod: 0x2489,
twopersian: 0x06F2,
tworoman: 0x2171,
twostroke: 0x01BB,
twosuperior: 0x00B2,
twothai: 0x0E52,
twothirds: 0x2154,
u: 0x0075,
uacute: 0x00FA,
ubar: 0x0289,
ubengali: 0x0989,
ubopomofo: 0x3128,
ubreve: 0x016D,
ucaron: 0x01D4,
ucircle: 0x24E4,
ucircumflex: 0x00FB,
ucircumflexbelow: 0x1E77,
ucyrillic: 0x0443,
udattadeva: 0x0951,
udblacute: 0x0171,
udblgrave: 0x0215,
udeva: 0x0909,
udieresis: 0x00FC,
udieresisacute: 0x01D8,
udieresisbelow: 0x1E73,
udieresiscaron: 0x01DA,
udieresiscyrillic: 0x04F1,
udieresisgrave: 0x01DC,
udieresismacron: 0x01D6,
udotbelow: 0x1EE5,
ugrave: 0x00F9,
ugujarati: 0x0A89,
ugurmukhi: 0x0A09,
uhiragana: 0x3046,
uhookabove: 0x1EE7,
uhorn: 0x01B0,
uhornacute: 0x1EE9,
uhorndotbelow: 0x1EF1,
uhorngrave: 0x1EEB,
uhornhookabove: 0x1EED,
uhorntilde: 0x1EEF,
uhungarumlaut: 0x0171,
uhungarumlautcyrillic: 0x04F3,
uinvertedbreve: 0x0217,
ukatakana: 0x30A6,
ukatakanahalfwidth: 0xFF73,
ukcyrillic: 0x0479,
ukorean: 0x315C,
umacron: 0x016B,
umacroncyrillic: 0x04EF,
umacrondieresis: 0x1E7B,
umatragurmukhi: 0x0A41,
umonospace: 0xFF55,
underscore: 0x005F,
underscoredbl: 0x2017,
underscoremonospace: 0xFF3F,
underscorevertical: 0xFE33,
underscorewavy: 0xFE4F,
union: 0x222A,
universal: 0x2200,
uogonek: 0x0173,
uparen: 0x24B0,
upblock: 0x2580,
upperdothebrew: 0x05C4,
upsilon: 0x03C5,
upsilondieresis: 0x03CB,
upsilondieresistonos: 0x03B0,
upsilonlatin: 0x028A,
upsilontonos: 0x03CD,
uptackbelowcmb: 0x031D,
uptackmod: 0x02D4,
uragurmukhi: 0x0A73,
uring: 0x016F,
ushortcyrillic: 0x045E,
usmallhiragana: 0x3045,
usmallkatakana: 0x30A5,
usmallkatakanahalfwidth: 0xFF69,
ustraightcyrillic: 0x04AF,
ustraightstrokecyrillic: 0x04B1,
utilde: 0x0169,
utildeacute: 0x1E79,
utildebelow: 0x1E75,
uubengali: 0x098A,
uudeva: 0x090A,
uugujarati: 0x0A8A,
uugurmukhi: 0x0A0A,
uumatragurmukhi: 0x0A42,
uuvowelsignbengali: 0x09C2,
uuvowelsigndeva: 0x0942,
uuvowelsigngujarati: 0x0AC2,
uvowelsignbengali: 0x09C1,
uvowelsigndeva: 0x0941,
uvowelsigngujarati: 0x0AC1,
v: 0x0076,
vadeva: 0x0935,
vagujarati: 0x0AB5,
vagurmukhi: 0x0A35,
vakatakana: 0x30F7,
vav: 0x05D5,
vavdagesh: 0xFB35,
vavdagesh65: 0xFB35,
vavdageshhebrew: 0xFB35,
vavhebrew: 0x05D5,
vavholam: 0xFB4B,
vavholamhebrew: 0xFB4B,
vavvavhebrew: 0x05F0,
vavyodhebrew: 0x05F1,
vcircle: 0x24E5,
vdotbelow: 0x1E7F,
vecyrillic: 0x0432,
veharabic: 0x06A4,
vehfinalarabic: 0xFB6B,
vehinitialarabic: 0xFB6C,
vehmedialarabic: 0xFB6D,
vekatakana: 0x30F9,
venus: 0x2640,
verticalbar: 0x007C,
verticallineabovecmb: 0x030D,
verticallinebelowcmb: 0x0329,
verticallinelowmod: 0x02CC,
verticallinemod: 0x02C8,
vewarmenian: 0x057E,
vhook: 0x028B,
vikatakana: 0x30F8,
viramabengali: 0x09CD,
viramadeva: 0x094D,
viramagujarati: 0x0ACD,
visargabengali: 0x0983,
visargadeva: 0x0903,
visargagujarati: 0x0A83,
vmonospace: 0xFF56,
voarmenian: 0x0578,
voicediterationhiragana: 0x309E,
voicediterationkatakana: 0x30FE,
voicedmarkkana: 0x309B,
voicedmarkkanahalfwidth: 0xFF9E,
vokatakana: 0x30FA,
vparen: 0x24B1,
vtilde: 0x1E7D,
vturned: 0x028C,
vuhiragana: 0x3094,
vukatakana: 0x30F4,
w: 0x0077,
wacute: 0x1E83,
waekorean: 0x3159,
wahiragana: 0x308F,
wakatakana: 0x30EF,
wakatakanahalfwidth: 0xFF9C,
wakorean: 0x3158,
wasmallhiragana: 0x308E,
wasmallkatakana: 0x30EE,
wattosquare: 0x3357,
wavedash: 0x301C,
wavyunderscorevertical: 0xFE34,
wawarabic: 0x0648,
wawfinalarabic: 0xFEEE,
wawhamzaabovearabic: 0x0624,
wawhamzaabovefinalarabic: 0xFE86,
wbsquare: 0x33DD,
wcircle: 0x24E6,
wcircumflex: 0x0175,
wdieresis: 0x1E85,
wdotaccent: 0x1E87,
wdotbelow: 0x1E89,
wehiragana: 0x3091,
weierstrass: 0x2118,
wekatakana: 0x30F1,
wekorean: 0x315E,
weokorean: 0x315D,
wgrave: 0x1E81,
whitebullet: 0x25E6,
whitecircle: 0x25CB,
whitecircleinverse: 0x25D9,
whitecornerbracketleft: 0x300E,
whitecornerbracketleftvertical: 0xFE43,
whitecornerbracketright: 0x300F,
whitecornerbracketrightvertical: 0xFE44,
whitediamond: 0x25C7,
whitediamondcontainingblacksmalldiamond: 0x25C8,
whitedownpointingsmalltriangle: 0x25BF,
whitedownpointingtriangle: 0x25BD,
whiteleftpointingsmalltriangle: 0x25C3,
whiteleftpointingtriangle: 0x25C1,
whitelenticularbracketleft: 0x3016,
whitelenticularbracketright: 0x3017,
whiterightpointingsmalltriangle: 0x25B9,
whiterightpointingtriangle: 0x25B7,
whitesmallsquare: 0x25AB,
whitesmilingface: 0x263A,
whitesquare: 0x25A1,
whitestar: 0x2606,
whitetelephone: 0x260F,
whitetortoiseshellbracketleft: 0x3018,
whitetortoiseshellbracketright: 0x3019,
whiteuppointingsmalltriangle: 0x25B5,
whiteuppointingtriangle: 0x25B3,
wihiragana: 0x3090,
wikatakana: 0x30F0,
wikorean: 0x315F,
wmonospace: 0xFF57,
wohiragana: 0x3092,
wokatakana: 0x30F2,
wokatakanahalfwidth: 0xFF66,
won: 0x20A9,
wonmonospace: 0xFFE6,
wowaenthai: 0x0E27,
wparen: 0x24B2,
wring: 0x1E98,
wsuperior: 0x02B7,
wturned: 0x028D,
wynn: 0x01BF,
x: 0x0078,
xabovecmb: 0x033D,
xbopomofo: 0x3112,
xcircle: 0x24E7,
xdieresis: 0x1E8D,
xdotaccent: 0x1E8B,
xeharmenian: 0x056D,
xi: 0x03BE,
xmonospace: 0xFF58,
xparen: 0x24B3,
xsuperior: 0x02E3,
y: 0x0079,
yaadosquare: 0x334E,
yabengali: 0x09AF,
yacute: 0x00FD,
yadeva: 0x092F,
yaekorean: 0x3152,
yagujarati: 0x0AAF,
yagurmukhi: 0x0A2F,
yahiragana: 0x3084,
yakatakana: 0x30E4,
yakatakanahalfwidth: 0xFF94,
yakorean: 0x3151,
yamakkanthai: 0x0E4E,
yasmallhiragana: 0x3083,
yasmallkatakana: 0x30E3,
yasmallkatakanahalfwidth: 0xFF6C,
yatcyrillic: 0x0463,
ycircle: 0x24E8,
ycircumflex: 0x0177,
ydieresis: 0x00FF,
ydotaccent: 0x1E8F,
ydotbelow: 0x1EF5,
yeharabic: 0x064A,
yehbarreearabic: 0x06D2,
yehbarreefinalarabic: 0xFBAF,
yehfinalarabic: 0xFEF2,
yehhamzaabovearabic: 0x0626,
yehhamzaabovefinalarabic: 0xFE8A,
yehhamzaaboveinitialarabic: 0xFE8B,
yehhamzaabovemedialarabic: 0xFE8C,
yehinitialarabic: 0xFEF3,
yehmedialarabic: 0xFEF4,
yehmeeminitialarabic: 0xFCDD,
yehmeemisolatedarabic: 0xFC58,
yehnoonfinalarabic: 0xFC94,
yehthreedotsbelowarabic: 0x06D1,
yekorean: 0x3156,
yen: 0x00A5,
yenmonospace: 0xFFE5,
yeokorean: 0x3155,
yeorinhieuhkorean: 0x3186,
yerahbenyomohebrew: 0x05AA,
yerahbenyomolefthebrew: 0x05AA,
yericyrillic: 0x044B,
yerudieresiscyrillic: 0x04F9,
yesieungkorean: 0x3181,
yesieungpansioskorean: 0x3183,
yesieungsioskorean: 0x3182,
yetivhebrew: 0x059A,
ygrave: 0x1EF3,
yhook: 0x01B4,
yhookabove: 0x1EF7,
yiarmenian: 0x0575,
yicyrillic: 0x0457,
yikorean: 0x3162,
yinyang: 0x262F,
yiwnarmenian: 0x0582,
ymonospace: 0xFF59,
yod: 0x05D9,
yoddagesh: 0xFB39,
yoddageshhebrew: 0xFB39,
yodhebrew: 0x05D9,
yodyodhebrew: 0x05F2,
yodyodpatahhebrew: 0xFB1F,
yohiragana: 0x3088,
yoikorean: 0x3189,
yokatakana: 0x30E8,
yokatakanahalfwidth: 0xFF96,
yokorean: 0x315B,
yosmallhiragana: 0x3087,
yosmallkatakana: 0x30E7,
yosmallkatakanahalfwidth: 0xFF6E,
yotgreek: 0x03F3,
yoyaekorean: 0x3188,
yoyakorean: 0x3187,
yoyakthai: 0x0E22,
yoyingthai: 0x0E0D,
yparen: 0x24B4,
ypogegrammeni: 0x037A,
ypogegrammenigreekcmb: 0x0345,
yr: 0x01A6,
yring: 0x1E99,
ysuperior: 0x02B8,
ytilde: 0x1EF9,
yturned: 0x028E,
yuhiragana: 0x3086,
yuikorean: 0x318C,
yukatakana: 0x30E6,
yukatakanahalfwidth: 0xFF95,
yukorean: 0x3160,
yusbigcyrillic: 0x046B,
yusbigiotifiedcyrillic: 0x046D,
yuslittlecyrillic: 0x0467,
yuslittleiotifiedcyrillic: 0x0469,
yusmallhiragana: 0x3085,
yusmallkatakana: 0x30E5,
yusmallkatakanahalfwidth: 0xFF6D,
yuyekorean: 0x318B,
yuyeokorean: 0x318A,
yyabengali: 0x09DF,
yyadeva: 0x095F,
z: 0x007A,
zaarmenian: 0x0566,
zacute: 0x017A,
zadeva: 0x095B,
zagurmukhi: 0x0A5B,
zaharabic: 0x0638,
zahfinalarabic: 0xFEC6,
zahinitialarabic: 0xFEC7,
zahiragana: 0x3056,
zahmedialarabic: 0xFEC8,
zainarabic: 0x0632,
zainfinalarabic: 0xFEB0,
zakatakana: 0x30B6,
zaqefgadolhebrew: 0x0595,
zaqefqatanhebrew: 0x0594,
zarqahebrew: 0x0598,
zayin: 0x05D6,
zayindagesh: 0xFB36,
zayindageshhebrew: 0xFB36,
zayinhebrew: 0x05D6,
zbopomofo: 0x3117,
zcaron: 0x017E,
zcircle: 0x24E9,
zcircumflex: 0x1E91,
zcurl: 0x0291,
zdot: 0x017C,
zdotaccent: 0x017C,
zdotbelow: 0x1E93,
zecyrillic: 0x0437,
zedescendercyrillic: 0x0499,
zedieresiscyrillic: 0x04DF,
zehiragana: 0x305C,
zekatakana: 0x30BC,
zero: 0x0030,
zeroarabic: 0x0660,
zerobengali: 0x09E6,
zerodeva: 0x0966,
zerogujarati: 0x0AE6,
zerogurmukhi: 0x0A66,
zerohackarabic: 0x0660,
zeroinferior: 0x2080,
zeromonospace: 0xFF10,
zerooldstyle: 0xF730,
zeropersian: 0x06F0,
zerosuperior: 0x2070,
zerothai: 0x0E50,
zerowidthjoiner: 0xFEFF,
zerowidthnonjoiner: 0x200C,
zerowidthspace: 0x200B,
zeta: 0x03B6,
zhbopomofo: 0x3113,
zhearmenian: 0x056A,
zhebrevecyrillic: 0x04C2,
zhecyrillic: 0x0436,
zhedescendercyrillic: 0x0497,
zhedieresiscyrillic: 0x04DD,
zihiragana: 0x3058,
zikatakana: 0x30B8,
zinorhebrew: 0x05AE,
zlinebelow: 0x1E95,
zmonospace: 0xFF5A,
zohiragana: 0x305E,
zokatakana: 0x30BE,
zparen: 0x24B5,
zretroflexhook: 0x0290,
zstroke: 0x01B6,
zuhiragana: 0x305A,
zukatakana: 0x30BA,
'.notdef': 0x0000
};
promise.resolve(stream);
});
} else {
promise.resolve(image);
}
}
/**
* Decode and clamp a value. The formula is different from the spec because we
* don't decode to float range [0,1], we decode it in the [0,max] range.
*/
function decodeAndClamp(value, addend, coefficient, max) {
value = addend + value * coefficient;
// Clamp the value to the range
return value < 0 ? 0 : value > max ? max : value;
}
function PDFImage(xref, res, image, inline, smask, mask) {
this.image = image;
if (image.getParams) {
// JPX/JPEG2000 streams directly contain bits per component
// and color space mode information.
TODO('get params from actual stream');
// var bits = ...
// var colorspace = ...
}
// TODO cache rendered images?
var dict = image.dict;
this.width = dict.get('Width', 'W');
this.height = dict.get('Height', 'H');
if (this.width < 1 || this.height < 1)
error('Invalid image width: ' + this.width + ' or height: ' +
this.height);
this.interpolate = dict.get('Interpolate', 'I') || false;
this.imageMask = dict.get('ImageMask', 'IM') || false;
var bitsPerComponent = image.bitsPerComponent;
if (!bitsPerComponent) {
bitsPerComponent = dict.get('BitsPerComponent', 'BPC');
if (!bitsPerComponent) {
if (this.imageMask)
bitsPerComponent = 1;
else
error('Bits per component missing in image: ' + this.imageMask);
}
}
this.bpc = bitsPerComponent;
if (!this.imageMask) {
var colorSpace = dict.get('ColorSpace', 'CS');
if (!colorSpace) {
TODO('JPX images (which don"t require color spaces');
colorSpace = new Name('DeviceRGB');
}
this.colorSpace = ColorSpace.parse(colorSpace, xref, res);
this.numComps = this.colorSpace.numComps;
}
this.decode = dict.get('Decode', 'D');
this.needsDecode = false;
if (this.decode && this.colorSpace &&
!this.colorSpace.isDefaultDecode(this.decode)) {
this.needsDecode = true;
// Do some preprocessing to avoid more math.
var max = (1 << bitsPerComponent) - 1;
this.decodeCoefficients = [];
this.decodeAddends = [];
for (var i = 0, j = 0; i < this.decode.length; i += 2, ++j) {
var dmin = this.decode[i];
var dmax = this.decode[i + 1];
this.decodeCoefficients[j] = dmax - dmin;
this.decodeAddends[j] = max * dmin;
}
}
if (smask) {
this.smask = new PDFImage(xref, res, smask, false);
} else if (mask) {
if (isStream(mask)) {
this.mask = new PDFImage(xref, res, mask, false);
} else {
// Color key mask (just an array).
this.mask = mask;
}
}
}
/**
* Handles processing of image data and calls the callback with an argument
* of a PDFImage when the image is ready to be used.
*/
PDFImage.buildImage = function PDFImage_buildImage(callback, handler, xref,
res, image, inline) {
var imageDataPromise = new Promise();
var smaskPromise = new Promise();
var maskPromise = new Promise();
// The image data and smask data may not be ready yet, wait till both are
// resolved.
Promise.all([imageDataPromise, smaskPromise, maskPromise]).then(
function(results) {
var imageData = results[0], smaskData = results[1], maskData = results[2];
var image = new PDFImage(xref, res, imageData, inline, smaskData,
maskData);
callback(image);
});
handleImageData(handler, xref, res, image, imageDataPromise);
var smask = image.dict.get('SMask');
var mask = image.dict.get('Mask');
if (smask) {
handleImageData(handler, xref, res, smask, smaskPromise);
maskPromise.resolve(null);
} else {
smaskPromise.resolve(null);
if (mask) {
if (isStream(mask)) {
handleImageData(handler, xref, res, mask, maskPromise);
} else if (isArray(mask)) {
maskPromise.resolve(mask);
} else {
warn('Unsupported mask format.');
maskPromise.resolve(null);
}
} else {
maskPromise.resolve(null);
}
}
};
/**
* Resize an image using the nearest neighbor algorithm. Currently only
* supports one and three component images.
* @param {TypedArray} pixels The original image with one component.
* @param {Number} bpc Number of bits per component.
* @param {Number} components Number of color components, 1 or 3 is supported.
* @param {Number} w1 Original width.
* @param {Number} h1 Original height.
* @param {Number} w2 New width.
* @param {Number} h2 New height.
* @return {TypedArray} Resized image data.
*/
PDFImage.resize = function PDFImage_resize(pixels, bpc, components,
w1, h1, w2, h2) {
var length = w2 * h2 * components;
var temp = bpc <= 8 ? new Uint8Array(length) :
bpc <= 16 ? new Uint16Array(length) : new Uint32Array(length);
var xRatio = w1 / w2;
var yRatio = h1 / h2;
var px, py, newIndex, oldIndex;
for (var i = 0; i < h2; i++) {
for (var j = 0; j < w2; j++) {
px = Math.floor(j * xRatio);
py = Math.floor(i * yRatio);
newIndex = (i * w2) + j;
oldIndex = ((py * w1) + px);
if (components === 1) {
temp[newIndex] = pixels[oldIndex];
} else if (components === 3) {
newIndex *= 3;
oldIndex *= 3;
temp[newIndex] = pixels[oldIndex];
temp[newIndex + 1] = pixels[oldIndex + 1];
temp[newIndex + 2] = pixels[oldIndex + 2];
}
}
}
return temp;
};
PDFImage.prototype = {
get drawWidth() {
if (!this.smask)
return this.width;
return Math.max(this.width, this.smask.width);
},
get drawHeight() {
if (!this.smask)
return this.height;
bufferLength = buffer.length;
width = this.width;
height = this.height;
numComps = this.numComps;
// The Metrics object contains glyph widths (in glyph space units).
// As per PDF spec, for most fonts (Type 3 being an exception) a glyph
// space unit corresponds to 1/1000th of text space unit.
var Metrics = {
'Courier': 600,
'Courier-Bold': 600,
'Courier-BoldOblique': 600,
'Courier-Oblique': 600,
'Helvetica' : {
'space': 278,
'exclam': 278,
'quotedbl': 355,
'numbersign': 556,
'dollar': 556,
'percent': 889,
'ampersand': 667,
'quoteright': 222,
'parenleft': 333,
'parenright': 333,
'asterisk': 389,
'plus': 584,
'comma': 278,
'hyphen': 333,
'period': 278,
'slash': 278,
'zero': 556,
'one': 556,
'two': 556,
'three': 556,
'four': 556,
'five': 556,
'six': 556,
'seven': 556,
'eight': 556,
'nine': 556,
'colon': 278,
'semicolon': 278,
'less': 584,
'equal': 584,
'greater': 584,
'question': 556,
'at': 1015,
'A': 667,
'B': 667,
'C': 722,
'D': 722,
'E': 667,
'F': 611,
'G': 778,
'H': 722,
'I': 278,
'J': 500,
'K': 667,
'L': 556,
'M': 833,
'N': 722,
'O': 778,
'P': 667,
'Q': 778,
'R': 722,
'S': 667,
'T': 611,
'U': 722,
'V': 667,
'W': 944,
'X': 667,
'Y': 667,
'Z': 611,
'bracketleft': 278,
'backslash': 278,
'bracketright': 278,
'asciicircum': 469,
'underscore': 556,
'quoteleft': 222,
'a': 556,
'b': 556,
'c': 500,
'd': 556,
'e': 556,
'f': 278,
'g': 556,
'h': 556,
'i': 222,
'j': 222,
'k': 500,
'l': 222,
'm': 833,
'n': 556,
'o': 556,
'p': 556,
'q': 556,
'r': 333,
's': 500,
't': 278,
'u': 556,
'v': 500,
'w': 722,
'x': 500,
'y': 500,
'z': 500,
'braceleft': 334,
'bar': 260,
'braceright': 334,
'asciitilde': 584,
'exclamdown': 333,
'cent': 556,
'sterling': 556,
'fraction': 167,
'yen': 556,
'florin': 556,
'section': 556,
'currency': 556,
'quotesingle': 191,
'quotedblleft': 333,
'guillemotleft': 556,
'guilsinglleft': 333,
'guilsinglright': 333,
'fi': 500,
'fl': 500,
'endash': 556,
'dagger': 556,
'daggerdbl': 556,
'periodcentered': 278,
'paragraph': 537,
'bullet': 350,
'quotesinglbase': 222,
'quotedblbase': 333,
'quotedblright': 333,
'guillemotright': 556,
'ellipsis': 1000,
'perthousand': 1000,
'questiondown': 611,
'grave': 333,
'acute': 333,
'circumflex': 333,
'tilde': 333,
'macron': 333,
'breve': 333,
'dotaccent': 333,
'dieresis': 333,
'ring': 333,
'cedilla': 333,
'hungarumlaut': 333,
'ogonek': 333,
'caron': 333,
'emdash': 1000,
'AE': 1000,
'ordfeminine': 370,
'Lslash': 556,
'Oslash': 778,
'OE': 1000,
'ordmasculine': 365,
'ae': 889,
'dotlessi': 278,
'lslash': 222,
'oslash': 611,
'oe': 944,
'germandbls': 611,
'Idieresis': 278,
'eacute': 556,
'abreve': 556,
'uhungarumlaut': 556,
'ecaron': 556,
'Ydieresis': 667,
'divide': 584,
'Yacute': 667,
'Acircumflex': 667,
'aacute': 556,
'Ucircumflex': 722,
'yacute': 500,
'scommaaccent': 500,
'ecircumflex': 556,
'Uring': 722,
'Udieresis': 722,
'aogonek': 556,
'Uacute': 722,
'uogonek': 556,
'Edieresis': 667,
'Dcroat': 722,
'commaaccent': 250,
'copyright': 737,
'Emacron': 667,
'ccaron': 500,
'aring': 556,
'Ncommaaccent': 722,
'lacute': 222,
'agrave': 556,
'Tcommaaccent': 611,
'Cacute': 722,
'atilde': 556,
'Edotaccent': 667,
'scaron': 500,
'scedilla': 500,
'iacute': 278,
'lozenge': 471,
'Rcaron': 722,
'Gcommaaccent': 778,
'ucircumflex': 556,
'acircumflex': 556,
'Amacron': 667,
'rcaron': 333,
'ccedilla': 500,
'Zdotaccent': 611,
'Thorn': 667,
'Omacron': 778,
'Racute': 722,
'Sacute': 667,
'dcaron': 643,
'Umacron': 722,
'uring': 556,
'threesuperior': 333,
'Ograve': 778,
'Agrave': 667,
'Abreve': 667,
'multiply': 584,
'uacute': 556,
'Tcaron': 611,
'partialdiff': 476,
'ydieresis': 500,
'Nacute': 722,
'icircumflex': 278,
'Ecircumflex': 667,
'adieresis': 556,
'edieresis': 556,
'cacute': 500,
'nacute': 556,
'umacron': 556,
'Ncaron': 722,
'Iacute': 278,
'plusminus': 584,
'brokenbar': 260,
'registered': 737,
'Gbreve': 778,
'Idotaccent': 278,
'summation': 600,
'Egrave': 667,
'racute': 333,
'omacron': 556,
'Zacute': 611,
'Zcaron': 611,
'greaterequal': 549,
'Eth': 722,
'Ccedilla': 722,
'lcommaaccent': 222,
'tcaron': 317,
'eogonek': 556,
'Uogonek': 722,
'Aacute': 667,
'Adieresis': 667,
'egrave': 556,
'zacute': 500,
'iogonek': 222,
'Oacute': 778,
'oacute': 556,
'amacron': 556,
'sacute': 500,
'idieresis': 278,
'Ocircumflex': 778,
'Ugrave': 722,
'Delta': 612,
'thorn': 556,
'twosuperior': 333,
'Odieresis': 778,
'mu': 556,
'igrave': 278,
'ohungarumlaut': 556,
'Eogonek': 667,
'dcroat': 556,
'threequarters': 834,
'Scedilla': 667,
'lcaron': 299,
'Kcommaaccent': 667,
'Lacute': 556,
'trademark': 1000,
'edotaccent': 556,
'Igrave': 278,
'Imacron': 278,
'Lcaron': 556,
'onehalf': 834,
'lessequal': 549,
'ocircumflex': 556,
'ntilde': 556,
'Uhungarumlaut': 722,
'Eacute': 667,
'emacron': 556,
'gbreve': 556,
'onequarter': 834,
'Scaron': 667,
'Scommaaccent': 667,
'Ohungarumlaut': 778,
'degree': 400,
'ograve': 556,
'Ccaron': 722,
'ugrave': 556,
'radical': 453,
'Dcaron': 722,
'rcommaaccent': 333,
'Ntilde': 722,
'otilde': 556,
'Rcommaaccent': 722,
'Lcommaaccent': 556,
'Atilde': 667,
'Aogonek': 667,
'Aring': 667,
'Otilde': 778,
'zdotaccent': 500,
'Ecaron': 667,
'Iogonek': 278,
'kcommaaccent': 500,
'minus': 584,
'Icircumflex': 278,
'ncaron': 556,
'tcommaaccent': 278,
'logicalnot': 584,
'odieresis': 556,
'udieresis': 556,
'notequal': 549,
'gcommaaccent': 556,
'eth': 556,
'zcaron': 500,
'ncommaaccent': 556,
'onesuperior': 333,
'imacron': 278,
'Euro': 556
},
'Helvetica-Bold': {
'space': 278,
'exclam': 333,
'quotedbl': 474,
'numbersign': 556,
'dollar': 556,
'percent': 889,
'ampersand': 722,
'quoteright': 278,
'parenleft': 333,
'parenright': 333,
'asterisk': 389,
'plus': 584,
'comma': 278,
'hyphen': 333,
'period': 278,
'slash': 278,
'zero': 556,
'one': 556,
'two': 556,
'three': 556,
'four': 556,
'five': 556,
'six': 556,
'seven': 556,
'eight': 556,
'nine': 556,
'colon': 333,
'semicolon': 333,
'less': 584,
'equal': 584,
'greater': 584,
'question': 611,
'at': 975,
'A': 722,
'B': 722,
'C': 722,
'D': 722,
'E': 667,
'F': 611,
'G': 778,
'H': 722,
'I': 278,
'J': 556,
'K': 722,
'L': 611,
'M': 833,
'N': 722,
'O': 778,
'P': 667,
'Q': 778,
'R': 722,
'S': 667,
'T': 611,
'U': 722,
'V': 667,
'W': 944,
'X': 667,
'Y': 667,
'Z': 611,
'bracketleft': 333,
'backslash': 278,
'bracketright': 333,
'asciicircum': 584,
'underscore': 556,
'quoteleft': 278,
'a': 556,
'b': 611,
'c': 556,
'd': 611,
'e': 556,
'f': 333,
'g': 611,
'h': 611,
'i': 278,
'j': 278,
'k': 556,
'l': 278,
'm': 889,
'n': 611,
'o': 611,
'p': 611,
'q': 611,
'r': 389,
's': 556,
't': 333,
'u': 611,
'v': 556,
'w': 778,
'x': 556,
'y': 556,
'z': 500,
'braceleft': 389,
'bar': 280,
'braceright': 389,
'asciitilde': 584,
'exclamdown': 333,
'cent': 556,
'sterling': 556,
'fraction': 167,
'yen': 556,
'florin': 556,
'section': 556,
'currency': 556,
'quotesingle': 238,
'quotedblleft': 500,
'guillemotleft': 556,
'guilsinglleft': 333,
'guilsinglright': 333,
'fi': 611,
'fl': 611,
'endash': 556,
'dagger': 556,
'daggerdbl': 556,
'periodcentered': 278,
'paragraph': 556,
'bullet': 350,
'quotesinglbase': 278,
'quotedblbase': 500,
'quotedblright': 500,
'guillemotright': 556,
'ellipsis': 1000,
'perthousand': 1000,
'questiondown': 611,
'grave': 333,
'acute': 333,
'circumflex': 333,
'tilde': 333,
'macron': 333,
'breve': 333,
'dotaccent': 333,
'dieresis': 333,
'ring': 333,
'cedilla': 333,
'hungarumlaut': 333,
'ogonek': 333,
'caron': 333,
'emdash': 1000,
'AE': 1000,
'ordfeminine': 370,
'Lslash': 611,
'Oslash': 778,
'OE': 1000,
'ordmasculine': 365,
'ae': 889,
'dotlessi': 278,
'lslash': 278,
'oslash': 611,
'oe': 944,
'germandbls': 611,
'Idieresis': 278,
'eacute': 556,
'abreve': 556,
'uhungarumlaut': 611,
'ecaron': 556,
'Ydieresis': 667,
'divide': 584,
'Yacute': 667,
'Acircumflex': 722,
'aacute': 556,
'Ucircumflex': 722,
'yacute': 556,
'scommaaccent': 556,
'ecircumflex': 556,
'Uring': 722,
'Udieresis': 722,
'aogonek': 556,
'Uacute': 722,
'uogonek': 611,
'Edieresis': 667,
'Dcroat': 722,
'commaaccent': 250,
'copyright': 737,
'Emacron': 667,
'ccaron': 556,
'aring': 556,
'Ncommaaccent': 722,
'lacute': 278,
'agrave': 556,
'Tcommaaccent': 611,
'Cacute': 722,
'atilde': 556,
'Edotaccent': 667,
'scaron': 556,
'scedilla': 556,
'iacute': 278,
'lozenge': 494,
'Rcaron': 722,
'Gcommaaccent': 778,
'ucircumflex': 611,
'acircumflex': 556,
'Amacron': 722,
'rcaron': 389,
'ccedilla': 556,
'Zdotaccent': 611,
'Thorn': 667,
'Omacron': 778,
'Racute': 722,
'Sacute': 667,
'dcaron': 743,
'Umacron': 722,
'uring': 611,
'threesuperior': 333,
'Ograve': 778,
'Agrave': 722,
'Abreve': 722,
'multiply': 584,
'uacute': 611,
'Tcaron': 611,
'partialdiff': 494,
'ydieresis': 556,
'Nacute': 722,
'icircumflex': 278,
'Ecircumflex': 667,
'adieresis': 556,
'edieresis': 556,
'cacute': 556,
'nacute': 611,
'umacron': 611,
'Ncaron': 722,
'Iacute': 278,
'plusminus': 584,
'brokenbar': 280,
'registered': 737,
'Gbreve': 778,
'Idotaccent': 278,
'summation': 600,
'Egrave': 667,
'racute': 389,
'omacron': 611,
'Zacute': 611,
'Zcaron': 611,
'greaterequal': 549,
'Eth': 722,
'Ccedilla': 722,
'lcommaaccent': 278,
'tcaron': 389,
'eogonek': 556,
'Uogonek': 722,
'Aacute': 722,
'Adieresis': 722,
'egrave': 556,
'zacute': 500,
'iogonek': 278,
'Oacute': 778,
'oacute': 611,
'amacron': 556,
'sacute': 556,
'idieresis': 278,
'Ocircumflex': 778,
'Ugrave': 722,
'Delta': 612,
'thorn': 611,
'twosuperior': 333,
'Odieresis': 778,
'mu': 611,
'igrave': 278,
'ohungarumlaut': 611,
'Eogonek': 667,
'dcroat': 611,
'threequarters': 834,
'Scedilla': 667,
'lcaron': 400,
'Kcommaaccent': 722,
'Lacute': 611,
'trademark': 1000,
'edotaccent': 556,
'Igrave': 278,
'Imacron': 278,
'Lcaron': 611,
'onehalf': 834,
'lessequal': 549,
'ocircumflex': 611,
'ntilde': 611,
'Uhungarumlaut': 722,
'Eacute': 667,
'emacron': 556,
'gbreve': 611,
'onequarter': 834,
'Scaron': 667,
'Scommaaccent': 667,
'Ohungarumlaut': 778,
'degree': 400,
'ograve': 611,
'Ccaron': 722,
'ugrave': 611,
'radical': 549,
'Dcaron': 722,
'rcommaaccent': 389,
'Ntilde': 722,
'otilde': 611,
'Rcommaaccent': 722,
'Lcommaaccent': 611,
'Atilde': 722,
'Aogonek': 722,
'Aring': 722,
'Otilde': 778,
'zdotaccent': 500,
'Ecaron': 667,
'Iogonek': 278,
'kcommaaccent': 556,
'minus': 584,
'Icircumflex': 278,
'ncaron': 611,
'tcommaaccent': 333,
'logicalnot': 584,
'odieresis': 611,
'udieresis': 611,
'notequal': 549,
'gcommaaccent': 611,
'eth': 611,
'zcaron': 500,
'ncommaaccent': 611,
'onesuperior': 333,
'imacron': 278,
'Euro': 556
},
'Helvetica-BoldOblique': {
'space': 278,
'exclam': 333,
'quotedbl': 474,
'numbersign': 556,
'dollar': 556,
'percent': 889,
'ampersand': 722,
'quoteright': 278,
'parenleft': 333,
'parenright': 333,
'asterisk': 389,
'plus': 584,
'comma': 278,
'hyphen': 333,
'period': 278,
'slash': 278,
'zero': 556,
'one': 556,
'two': 556,
'three': 556,
'four': 556,
'five': 556,
'six': 556,
'seven': 556,
'eight': 556,
'nine': 556,
'colon': 333,
'semicolon': 333,
'less': 584,
'equal': 584,
'greater': 584,
'question': 611,
'at': 975,
'A': 722,
'B': 722,
'C': 722,
'D': 722,
'E': 667,
'F': 611,
'G': 778,
'H': 722,
'I': 278,
'J': 556,
'K': 722,
'L': 611,
'M': 833,
'N': 722,
'O': 778,
'P': 667,
'Q': 778,
'R': 722,
'S': 667,
'T': 611,
'U': 722,
'V': 667,
'W': 944,
'X': 667,
'Y': 667,
'Z': 611,
'bracketleft': 333,
'backslash': 278,
'bracketright': 333,
'asciicircum': 584,
'underscore': 556,
'quoteleft': 278,
'a': 556,
'b': 611,
'c': 556,
'd': 611,
'e': 556,
'f': 333,
'g': 611,
'h': 611,
'i': 278,
'j': 278,
'k': 556,
'l': 278,
'm': 889,
'n': 611,
'o': 611,
'p': 611,
'q': 611,
'r': 389,
's': 556,
't': 333,
'u': 611,
'v': 556,
'w': 778,
'x': 556,
'y': 556,
'z': 500,
'braceleft': 389,
'bar': 280,
'braceright': 389,
'asciitilde': 584,
'exclamdown': 333,
'cent': 556,
'sterling': 556,
'fraction': 167,
'yen': 556,
'florin': 556,
'section': 556,
'currency': 556,
'quotesingle': 238,
'quotedblleft': 500,
'guillemotleft': 556,
'guilsinglleft': 333,
'guilsinglright': 333,
'fi': 611,
'fl': 611,
'endash': 556,
'dagger': 556,
'daggerdbl': 556,
'periodcentered': 278,
'paragraph': 556,
'bullet': 350,
'quotesinglbase': 278,
'quotedblbase': 500,
'quotedblright': 500,
'guillemotright': 556,
'ellipsis': 1000,
'perthousand': 1000,
'questiondown': 611,
'grave': 333,
'acute': 333,
'circumflex': 333,
'tilde': 333,
'macron': 333,
'breve': 333,
'dotaccent': 333,
'dieresis': 333,
'ring': 333,
'cedilla': 333,
'hungarumlaut': 333,
'ogonek': 333,
'caron': 333,
'emdash': 1000,
'AE': 1000,
'ordfeminine': 370,
'Lslash': 611,
'Oslash': 778,
'OE': 1000,
'ordmasculine': 365,
'ae': 889,
'dotlessi': 278,
'lslash': 278,
'oslash': 611,
'oe': 944,
'germandbls': 611,
'Idieresis': 278,
'eacute': 556,
'abreve': 556,
'uhungarumlaut': 611,
'ecaron': 556,
'Ydieresis': 667,
'divide': 584,
'Yacute': 667,
'Acircumflex': 722,
'aacute': 556,
'Ucircumflex': 722,
'yacute': 556,
'scommaaccent': 556,
'ecircumflex': 556,
'Uring': 722,
'Udieresis': 722,
'aogonek': 556,
'Uacute': 722,
'uogonek': 611,
'Edieresis': 667,
'Dcroat': 722,
'commaaccent': 250,
'copyright': 737,
'Emacron': 667,
'ccaron': 556,
'aring': 556,
'Ncommaaccent': 722,
'lacute': 278,
'agrave': 556,
'Tcommaaccent': 611,
'Cacute': 722,
'atilde': 556,
'Edotaccent': 667,
'scaron': 556,
'scedilla': 556,
'iacute': 278,
'lozenge': 494,
'Rcaron': 722,
'Gcommaaccent': 778,
'ucircumflex': 611,
'acircumflex': 556,
'Amacron': 722,
'rcaron': 389,
'ccedilla': 556,
'Zdotaccent': 611,
'Thorn': 667,
'Omacron': 778,
'Racute': 722,
'Sacute': 667,
'dcaron': 743,
'Umacron': 722,
'uring': 611,
'threesuperior': 333,
'Ograve': 778,
'Agrave': 722,
'Abreve': 722,
'multiply': 584,
'uacute': 611,
'Tcaron': 611,
'partialdiff': 494,
'ydieresis': 556,
'Nacute': 722,
'icircumflex': 278,
'Ecircumflex': 667,
'adieresis': 556,
'edieresis': 556,
'cacute': 556,
'nacute': 611,
'umacron': 611,
'Ncaron': 722,
'Iacute': 278,
'plusminus': 584,
'brokenbar': 280,
'registered': 737,
'Gbreve': 778,
'Idotaccent': 278,
'summation': 600,
'Egrave': 667,
'racute': 389,
'omacron': 611,
'Zacute': 611,
'Zcaron': 611,
'greaterequal': 549,
'Eth': 722,
'Ccedilla': 722,
'lcommaaccent': 278,
'tcaron': 389,
'eogonek': 556,
'Uogonek': 722,
'Aacute': 722,
'Adieresis': 722,
'egrave': 556,
'zacute': 500,
'iogonek': 278,
'Oacute': 778,
'oacute': 611,
'amacron': 556,
'sacute': 556,
'idieresis': 278,
'Ocircumflex': 778,
'Ugrave': 722,
'Delta': 612,
'thorn': 611,
'twosuperior': 333,
'Odieresis': 778,
'mu': 611,
'igrave': 278,
'ohungarumlaut': 611,
'Eogonek': 667,
'dcroat': 611,
'threequarters': 834,
'Scedilla': 667,
'lcaron': 400,
'Kcommaaccent': 722,
'Lacute': 611,
'trademark': 1000,
'edotaccent': 556,
'Igrave': 278,
'Imacron': 278,
'Lcaron': 611,
'onehalf': 834,
'lessequal': 549,
'ocircumflex': 611,
'ntilde': 611,
'Uhungarumlaut': 722,
'Eacute': 667,
'emacron': 556,
'gbreve': 611,
'onequarter': 834,
'Scaron': 667,
'Scommaaccent': 667,
'Ohungarumlaut': 778,
'degree': 400,
'ograve': 611,
'Ccaron': 722,
'ugrave': 611,
'radical': 549,
'Dcaron': 722,
'rcommaaccent': 389,
'Ntilde': 722,
'otilde': 611,
'Rcommaaccent': 722,
'Lcommaaccent': 611,
'Atilde': 722,
'Aogonek': 722,
'Aring': 722,
'Otilde': 778,
'zdotaccent': 500,
'Ecaron': 667,
'Iogonek': 278,
'kcommaaccent': 556,
'minus': 584,
'Icircumflex': 278,
'ncaron': 611,
'tcommaaccent': 333,
'logicalnot': 584,
'odieresis': 611,
'udieresis': 611,
'notequal': 549,
'gcommaaccent': 611,
'eth': 611,
'zcaron': 500,
'ncommaaccent': 611,
'onesuperior': 333,
'imacron': 278,
'Euro': 556
},
'Helvetica-Oblique' : {
'space': 278,
'exclam': 278,
'quotedbl': 355,
'numbersign': 556,
'dollar': 556,
'percent': 889,
'ampersand': 667,
'quoteright': 222,
'parenleft': 333,
'parenright': 333,
'asterisk': 389,
'plus': 584,
'comma': 278,
'hyphen': 333,
'period': 278,
'slash': 278,
'zero': 556,
'one': 556,
'two': 556,
'three': 556,
'four': 556,
'five': 556,
'six': 556,
'seven': 556,
'eight': 556,
'nine': 556,
'colon': 278,
'semicolon': 278,
'less': 584,
'equal': 584,
'greater': 584,
'question': 556,
'at': 1015,
'A': 667,
'B': 667,
'C': 722,
'D': 722,
'E': 667,
'F': 611,
'G': 778,
'H': 722,
'I': 278,
'J': 500,
'K': 667,
'L': 556,
'M': 833,
'N': 722,
'O': 778,
'P': 667,
'Q': 778,
'R': 722,
'S': 667,
'T': 611,
'U': 722,
'V': 667,
'W': 944,
'X': 667,
'Y': 667,
'Z': 611,
'bracketleft': 278,
'backslash': 278,
'bracketright': 278,
'asciicircum': 469,
'underscore': 556,
'quoteleft': 222,
'a': 556,
'b': 556,
'c': 500,
'd': 556,
'e': 556,
'f': 278,
'g': 556,
'h': 556,
'i': 222,
'j': 222,
'k': 500,
'l': 222,
'm': 833,
'n': 556,
'o': 556,
'p': 556,
'q': 556,
'r': 333,
's': 500,
't': 278,
'u': 556,
'v': 500,
'w': 722,
'x': 500,
'y': 500,
'z': 500,
'braceleft': 334,
'bar': 260,
'braceright': 334,
'asciitilde': 584,
'exclamdown': 333,
'cent': 556,
'sterling': 556,
'fraction': 167,
'yen': 556,
'florin': 556,
'section': 556,
'currency': 556,
'quotesingle': 191,
'quotedblleft': 333,
'guillemotleft': 556,
'guilsinglleft': 333,
'guilsinglright': 333,
'fi': 500,
'fl': 500,
'endash': 556,
'dagger': 556,
'daggerdbl': 556,
'periodcentered': 278,
'paragraph': 537,
'bullet': 350,
'quotesinglbase': 222,
'quotedblbase': 333,
'quotedblright': 333,
'guillemotright': 556,
'ellipsis': 1000,
'perthousand': 1000,
'questiondown': 611,
'grave': 333,
'acute': 333,
'circumflex': 333,
'tilde': 333,
'macron': 333,
'breve': 333,
'dotaccent': 333,
'dieresis': 333,
'ring': 333,
'cedilla': 333,
'hungarumlaut': 333,
'ogonek': 333,
'caron': 333,
'emdash': 1000,
'AE': 1000,
'ordfeminine': 370,
'Lslash': 556,
'Oslash': 778,
'OE': 1000,
'ordmasculine': 365,
'ae': 889,
'dotlessi': 278,
'lslash': 222,
'oslash': 611,
'oe': 944,
'germandbls': 611,
'Idieresis': 278,
'eacute': 556,
'abreve': 556,
'uhungarumlaut': 556,
'ecaron': 556,
'Ydieresis': 667,
'divide': 584,
'Yacute': 667,
'Acircumflex': 667,
'aacute': 556,
'Ucircumflex': 722,
'yacute': 500,
'scommaaccent': 500,
'ecircumflex': 556,
'Uring': 722,
'Udieresis': 722,
'aogonek': 556,
'Uacute': 722,
'uogonek': 556,
'Edieresis': 667,
'Dcroat': 722,
'commaaccent': 250,
'copyright': 737,
'Emacron': 667,
'ccaron': 500,
'aring': 556,
'Ncommaaccent': 722,
'lacute': 222,
'agrave': 556,
'Tcommaaccent': 611,
'Cacute': 722,
'atilde': 556,
'Edotaccent': 667,
'scaron': 500,
'scedilla': 500,
'iacute': 278,
'lozenge': 471,
'Rcaron': 722,
'Gcommaaccent': 778,
'ucircumflex': 556,
'acircumflex': 556,
'Amacron': 667,
'rcaron': 333,
'ccedilla': 500,
'Zdotaccent': 611,
'Thorn': 667,
'Omacron': 778,
'Racute': 722,
'Sacute': 667,
'dcaron': 643,
'Umacron': 722,
'uring': 556,
'threesuperior': 333,
'Ograve': 778,
'Agrave': 667,
'Abreve': 667,
'multiply': 584,
'uacute': 556,
'Tcaron': 611,
'partialdiff': 476,
'ydieresis': 500,
'Nacute': 722,
'icircumflex': 278,
'Ecircumflex': 667,
'adieresis': 556,
'edieresis': 556,
'cacute': 500,
'nacute': 556,
'umacron': 556,
'Ncaron': 722,
'Iacute': 278,
'plusminus': 584,
'brokenbar': 260,
'registered': 737,
'Gbreve': 778,
'Idotaccent': 278,
'summation': 600,
'Egrave': 667,
'racute': 333,
'omacron': 556,
'Zacute': 611,
'Zcaron': 611,
'greaterequal': 549,
'Eth': 722,
'Ccedilla': 722,
'lcommaaccent': 222,
'tcaron': 317,
'eogonek': 556,
'Uogonek': 722,
'Aacute': 667,
'Adieresis': 667,
'egrave': 556,
'zacute': 500,
'iogonek': 222,
'Oacute': 778,
'oacute': 556,
'amacron': 556,
'sacute': 500,
'idieresis': 278,
'Ocircumflex': 778,
'Ugrave': 722,
'Delta': 612,
'thorn': 556,
'twosuperior': 333,
'Odieresis': 778,
'mu': 556,
'igrave': 278,
'ohungarumlaut': 556,
'Eogonek': 667,
'dcroat': 556,
'threequarters': 834,
'Scedilla': 667,
'lcaron': 299,
'Kcommaaccent': 667,
'Lacute': 556,
'trademark': 1000,
'edotaccent': 556,
'Igrave': 278,
'Imacron': 278,
'Lcaron': 556,
'onehalf': 834,
'lessequal': 549,
'ocircumflex': 556,
'ntilde': 556,
'Uhungarumlaut': 722,
'Eacute': 667,
'emacron': 556,
'gbreve': 556,
'onequarter': 834,
'Scaron': 667,
'Scommaaccent': 667,
'Ohungarumlaut': 778,
'degree': 400,
'ograve': 556,
'Ccaron': 722,
'ugrave': 556,
'radical': 453,
'Dcaron': 722,
'rcommaaccent': 333,
'Ntilde': 722,
'otilde': 556,
'Rcommaaccent': 722,
'Lcommaaccent': 556,
'Atilde': 667,
'Aogonek': 667,
'Aring': 667,
'Otilde': 778,
'zdotaccent': 500,
'Ecaron': 667,
'Iogonek': 278,
'kcommaaccent': 500,
'minus': 584,
'Icircumflex': 278,
'ncaron': 556,
'tcommaaccent': 278,
'logicalnot': 584,
'odieresis': 556,
'udieresis': 556,
'notequal': 549,
'gcommaaccent': 556,
'eth': 556,
'zcaron': 500,
'ncommaaccent': 556,
'onesuperior': 333,
'imacron': 278,
'Euro': 556
},
'Symbol': {
'space': 250,
'exclam': 333,
'universal': 713,
'numbersign': 500,
'existential': 549,
'percent': 833,
'ampersand': 778,
'suchthat': 439,
'parenleft': 333,
'parenright': 333,
'asteriskmath': 500,
'plus': 549,
'comma': 250,
'minus': 549,
'period': 250,
'slash': 278,
'zero': 500,
'one': 500,
'two': 500,
'three': 500,
'four': 500,
'five': 500,
'six': 500,
'seven': 500,
'eight': 500,
'nine': 500,
'colon': 278,
'semicolon': 278,
'less': 549,
'equal': 549,
'greater': 549,
'question': 444,
'congruent': 549,
'Alpha': 722,
'Beta': 667,
'Chi': 722,
'Delta': 612,
'Epsilon': 611,
'Phi': 763,
'Gamma': 603,
'Eta': 722,
'Iota': 333,
'theta1': 631,
'Kappa': 722,
'Lambda': 686,
'Mu': 889,
'Nu': 722,
'Omicron': 722,
'Pi': 768,
'Theta': 741,
'Rho': 556,
'Sigma': 592,
'Tau': 611,
'Upsilon': 690,
'sigma1': 439,
'Omega': 768,
'Xi': 645,
'Psi': 795,
'Zeta': 611,
'bracketleft': 333,
'therefore': 863,
'bracketright': 333,
'perpendicular': 658,
'underscore': 500,
'radicalex': 500,
'alpha': 631,
'beta': 549,
'chi': 549,
'delta': 494,
'epsilon': 439,
'phi': 521,
'gamma': 411,
'eta': 603,
'iota': 329,
'phi1': 603,
'kappa': 549,
'lambda': 549,
'mu': 576,
'nu': 521,
'omicron': 549,
'pi': 549,
'theta': 521,
'rho': 549,
'sigma': 603,
'tau': 439,
'upsilon': 576,
'omega1': 713,
'omega': 686,
'xi': 493,
'psi': 686,
'zeta': 494,
'braceleft': 480,
'bar': 200,
'braceright': 480,
'similar': 549,
'Euro': 750,
'Upsilon1': 620,
'minute': 247,
'lessequal': 549,
'fraction': 167,
'infinity': 713,
'florin': 500,
'club': 753,
'diamond': 753,
'heart': 753,
'spade': 753,
'arrowboth': 1042,
'arrowleft': 987,
'arrowup': 603,
'arrowright': 987,
'arrowdown': 603,
'degree': 400,
'plusminus': 549,
'second': 411,
'greaterequal': 549,
'multiply': 549,
'proportional': 713,
'partialdiff': 494,
'bullet': 460,
'divide': 549,
'notequal': 549,
'equivalence': 549,
'approxequal': 549,
'ellipsis': 1000,
'arrowvertex': 603,
'arrowhorizex': 1000,
'carriagereturn': 658,
'aleph': 823,
'Ifraktur': 686,
'Rfraktur': 795,
'weierstrass': 987,
'circlemultiply': 768,
'circleplus': 768,
'emptyset': 823,
'intersection': 768,
'union': 768,
'propersuperset': 713,
'reflexsuperset': 713,
'notsubset': 713,
'propersubset': 713,
'reflexsubset': 713,
'element': 713,
'notelement': 713,
'angle': 768,
'gradient': 713,
'registerserif': 790,
'copyrightserif': 790,
'trademarkserif': 890,
'product': 823,
'radical': 549,
'dotmath': 250,
'logicalnot': 713,
'logicaland': 603,
'logicalor': 603,
'arrowdblboth': 1042,
'arrowdblleft': 987,
'arrowdblup': 603,
'arrowdblright': 987,
'arrowdbldown': 603,
'lozenge': 494,
'angleleft': 329,
'registersans': 790,
'copyrightsans': 790,
'trademarksans': 786,
'summation': 713,
'parenlefttp': 384,
'parenleftex': 384,
'parenleftbt': 384,
'bracketlefttp': 384,
'bracketleftex': 384,
'bracketleftbt': 384,
'bracelefttp': 494,
'braceleftmid': 494,
'braceleftbt': 494,
'braceex': 494,
'angleright': 329,
'integral': 274,
'integraltp': 686,
'integralex': 686,
'integralbt': 686,
'parenrighttp': 384,
'parenrightex': 384,
'parenrightbt': 384,
'bracketrighttp': 384,
'bracketrightex': 384,
'bracketrightbt': 384,
'bracerighttp': 494,
'bracerightmid': 494,
'bracerightbt': 494,
'apple': 790
},
'Times-Roman': {
'space': 250,
'exclam': 333,
'quotedbl': 408,
'numbersign': 500,
'dollar': 500,
'percent': 833,
'ampersand': 778,
'quoteright': 333,
'parenleft': 333,
'parenright': 333,
'asterisk': 500,
'plus': 564,
'comma': 250,
'hyphen': 333,
'period': 250,
'slash': 278,
'zero': 500,
'one': 500,
'two': 500,
'three': 500,
'four': 500,
'five': 500,
'six': 500,
'seven': 500,
'eight': 500,
'nine': 500,
'colon': 278,
'semicolon': 278,
'less': 564,
'equal': 564,
'greater': 564,
'question': 444,
'at': 921,
'A': 722,
'B': 667,
'C': 667,
'D': 722,
'E': 611,
'F': 556,
'G': 722,
'H': 722,
'I': 333,
'J': 389,
'K': 722,
'L': 611,
'M': 889,
'N': 722,
'O': 722,
'P': 556,
'Q': 722,
'R': 667,
'S': 556,
'T': 611,
'U': 722,
'V': 722,
'W': 944,
'X': 722,
'Y': 722,
'Z': 611,
'bracketleft': 333,
'backslash': 278,
'bracketright': 333,
'asciicircum': 469,
'underscore': 500,
'quoteleft': 333,
'a': 444,
'b': 500,
'c': 444,
'd': 500,
'e': 444,
'f': 333,
'g': 500,
'h': 500,
'i': 278,
'j': 278,
'k': 500,
'l': 278,
'm': 778,
'n': 500,
'o': 500,
'p': 500,
'q': 500,
'r': 333,
's': 389,
't': 278,
'u': 500,
'v': 500,
'w': 722,
'x': 500,
'y': 500,
'z': 444,
'braceleft': 480,
'bar': 200,
'braceright': 480,
'asciitilde': 541,
'exclamdown': 333,
'cent': 500,
'sterling': 500,
'fraction': 167,
'yen': 500,
'florin': 500,
'section': 500,
'currency': 500,
'quotesingle': 180,
'quotedblleft': 444,
'guillemotleft': 500,
'guilsinglleft': 333,
'guilsinglright': 333,
'fi': 556,
'fl': 556,
'endash': 500,
'dagger': 500,
'daggerdbl': 500,
'periodcentered': 250,
'paragraph': 453,
'bullet': 350,
'quotesinglbase': 333,
'quotedblbase': 444,
'quotedblright': 444,
'guillemotright': 500,
'ellipsis': 1000,
'perthousand': 1000,
'questiondown': 444,
'grave': 333,
'acute': 333,
'circumflex': 333,
'tilde': 333,
'macron': 333,
'breve': 333,
'dotaccent': 333,
'dieresis': 333,
'ring': 333,
'cedilla': 333,
'hungarumlaut': 333,
'ogonek': 333,
'caron': 333,
'emdash': 1000,
'AE': 889,
'ordfeminine': 276,
'Lslash': 611,
'Oslash': 722,
'OE': 889,
'ordmasculine': 310,
'ae': 667,
'dotlessi': 278,
'lslash': 278,
'oslash': 500,
'oe': 722,
'germandbls': 500,
'Idieresis': 333,
'eacute': 444,
'abreve': 444,
'uhungarumlaut': 500,
'ecaron': 444,
'Ydieresis': 722,
'divide': 564,
'Yacute': 722,
'Acircumflex': 722,
'aacute': 444,
'Ucircumflex': 722,
'yacute': 500,
'scommaaccent': 389,
'ecircumflex': 444,
'Uring': 722,
'Udieresis': 722,
'aogonek': 444,
'Uacute': 722,
'uogonek': 500,
'Edieresis': 611,
'Dcroat': 722,
'commaaccent': 250,
'copyright': 760,
'Emacron': 611,
'ccaron': 444,
'aring': 444,
'Ncommaaccent': 722,
'lacute': 278,
'agrave': 444,
'Tcommaaccent': 611,
'Cacute': 667,
'atilde': 444,
'Edotaccent': 611,
'scaron': 389,
'scedilla': 389,
'iacute': 278,
'lozenge': 471,
'Rcaron': 667,
'Gcommaaccent': 722,
'ucircumflex': 500,
'acircumflex': 444,
'Amacron': 722,
'rcaron': 333,
'ccedilla': 444,
'Zdotaccent': 611,
'Thorn': 556,
'Omacron': 722,
'Racute': 667,
'Sacute': 556,
'dcaron': 588,
'Umacron': 722,
'uring': 500,
'threesuperior': 300,
'Ograve': 722,
'Agrave': 722,
'Abreve': 722,
'multiply': 564,
'uacute': 500,
'Tcaron': 611,
'partialdiff': 476,
'ydieresis': 500,
'Nacute': 722,
'icircumflex': 278,
'Ecircumflex': 611,
'adieresis': 444,
'edieresis': 444,
'cacute': 444,
'nacute': 500,
'umacron': 500,
'Ncaron': 722,
'Iacute': 333,
'plusminus': 564,
'brokenbar': 200,
'registered': 760,
'Gbreve': 722,
'Idotaccent': 333,
'summation': 600,
'Egrave': 611,
'racute': 333,
'omacron': 500,
'Zacute': 611,
'Zcaron': 611,
'greaterequal': 549,
'Eth': 722,
'Ccedilla': 667,
'lcommaaccent': 278,
'tcaron': 326,
'eogonek': 444,
'Uogonek': 722,
'Aacute': 722,
'Adieresis': 722,
'egrave': 444,
'zacute': 444,
'iogonek': 278,
'Oacute': 722,
'oacute': 500,
'amacron': 444,
'sacute': 389,
'idieresis': 278,
'Ocircumflex': 722,
'Ugrave': 722,
'Delta': 612,
'thorn': 500,
'twosuperior': 300,
'Odieresis': 722,
'mu': 500,
'igrave': 278,
'ohungarumlaut': 500,
'Eogonek': 611,
'dcroat': 500,
'threequarters': 750,
'Scedilla': 556,
'lcaron': 344,
'Kcommaaccent': 722,
'Lacute': 611,
'trademark': 980,
'edotaccent': 444,
'Igrave': 333,
'Imacron': 333,
'Lcaron': 611,
'onehalf': 750,
'lessequal': 549,
'ocircumflex': 500,
'ntilde': 500,
'Uhungarumlaut': 722,
'Eacute': 611,
'emacron': 444,
'gbreve': 500,
'onequarter': 750,
'Scaron': 556,
'Scommaaccent': 556,
'Ohungarumlaut': 722,
'degree': 400,
'ograve': 500,
'Ccaron': 667,
'ugrave': 500,
'radical': 453,
'Dcaron': 722,
'rcommaaccent': 333,
'Ntilde': 722,
'otilde': 500,
'Rcommaaccent': 667,
'Lcommaaccent': 611,
'Atilde': 722,
'Aogonek': 722,
'Aring': 722,
'Otilde': 722,
'zdotaccent': 444,
'Ecaron': 611,
'Iogonek': 333,
'kcommaaccent': 500,
'minus': 564,
'Icircumflex': 333,
'ncaron': 500,
'tcommaaccent': 278,
'logicalnot': 564,
'odieresis': 500,
'udieresis': 500,
'notequal': 549,
'gcommaaccent': 500,
'eth': 500,
'zcaron': 444,
'ncommaaccent': 500,
'onesuperior': 300,
'imacron': 278,
'Euro': 500
},
'Times-Bold': {
'space': 250,
'exclam': 333,
'quotedbl': 555,
'numbersign': 500,
'dollar': 500,
'percent': 1000,
'ampersand': 833,
'quoteright': 333,
'parenleft': 333,
'parenright': 333,
'asterisk': 500,
'plus': 570,
'comma': 250,
'hyphen': 333,
'period': 250,
'slash': 278,
'zero': 500,
'one': 500,
'two': 500,
'three': 500,
'four': 500,
'five': 500,
'six': 500,
'seven': 500,
'eight': 500,
'nine': 500,
'colon': 333,
'semicolon': 333,
'less': 570,
'equal': 570,
'greater': 570,
'question': 500,
'at': 930,
'A': 722,
'B': 667,
'C': 722,
'D': 722,
'E': 667,
'F': 611,
'G': 778,
'H': 778,
'I': 389,
'J': 500,
'K': 778,
'L': 667,
'M': 944,
'N': 722,
'O': 778,
'P': 611,
'Q': 778,
'R': 722,
'S': 556,
'T': 667,
'U': 722,
'V': 722,
'W': 1000,
'X': 722,
'Y': 722,
'Z': 667,
'bracketleft': 333,
'backslash': 278,
'bracketright': 333,
'asciicircum': 581,
'underscore': 500,
'quoteleft': 333,
'a': 500,
'b': 556,
'c': 444,
'd': 556,
'e': 444,
'f': 333,
'g': 500,
'h': 556,
'i': 278,
'j': 333,
'k': 556,
'l': 278,
'm': 833,
'n': 556,
'o': 500,
'p': 556,
'q': 556,
'r': 444,
's': 389,
't': 333,
'u': 556,
'v': 500,
'w': 722,
'x': 500,
'y': 500,
'z': 444,
'braceleft': 394,
'bar': 220,
'braceright': 394,
'asciitilde': 520,
'exclamdown': 333,
'cent': 500,
'sterling': 500,
'fraction': 167,
'yen': 500,
'florin': 500,
'section': 500,
'currency': 500,
'quotesingle': 278,
'quotedblleft': 500,
'guillemotleft': 500,
'guilsinglleft': 333,
'guilsinglright': 333,
'fi': 556,
'fl': 556,
'endash': 500,
'dagger': 500,
'daggerdbl': 500,
'periodcentered': 250,
'paragraph': 540,
'bullet': 350,
'quotesinglbase': 333,
'quotedblbase': 500,
'quotedblright': 500,
'guillemotright': 500,
'ellipsis': 1000,
'perthousand': 1000,
'questiondown': 500,
'grave': 333,
'acute': 333,
'circumflex': 333,
'tilde': 333,
'macron': 333,
'breve': 333,
'dotaccent': 333,
'dieresis': 333,
'ring': 333,
'cedilla': 333,
'hungarumlaut': 333,
'ogonek': 333,
'caron': 333,
'emdash': 1000,
'AE': 1000,
'ordfeminine': 300,
'Lslash': 667,
'Oslash': 778,
'OE': 1000,
'ordmasculine': 330,
'ae': 722,
'dotlessi': 278,
'lslash': 278,
'oslash': 500,
'oe': 722,
'germandbls': 556,
'Idieresis': 389,
'eacute': 444,
'abreve': 500,
'uhungarumlaut': 556,
'ecaron': 444,
'Ydieresis': 722,
'divide': 570,
'Yacute': 722,
'Acircumflex': 722,
'aacute': 500,
'Ucircumflex': 722,
'yacute': 500,
'scommaaccent': 389,
'ecircumflex': 444,
'Uring': 722,
'Udieresis': 722,
'aogonek': 500,
'Uacute': 722,
'uogonek': 556,
'Edieresis': 667,
'Dcroat': 722,
'commaaccent': 250,
'copyright': 747,
'Emacron': 667,
'ccaron': 444,
'aring': 500,
'Ncommaaccent': 722,
'lacute': 278,
'agrave': 500,
'Tcommaaccent': 667,
'Cacute': 722,
'atilde': 500,
'Edotaccent': 667,
'scaron': 389,
'scedilla': 389,
'iacute': 278,
'lozenge': 494,
'Rcaron': 722,
'Gcommaaccent': 778,
'ucircumflex': 556,
'acircumflex': 500,
'Amacron': 722,
'rcaron': 444,
'ccedilla': 444,
'Zdotaccent': 667,
'Thorn': 611,
'Omacron': 778,
'Racute': 722,
'Sacute': 556,
'dcaron': 672,
'Umacron': 722,
'uring': 556,
'threesuperior': 300,
'Ograve': 778,
'Agrave': 722,
'Abreve': 722,
'multiply': 570,
'uacute': 556,
'Tcaron': 667,
'partialdiff': 494,
'ydieresis': 500,
'Nacute': 722,
'icircumflex': 278,
'Ecircumflex': 667,
'adieresis': 500,
'edieresis': 444,
'cacute': 444,
'nacute': 556,
'umacron': 556,
'Ncaron': 722,
'Iacute': 389,
'plusminus': 570,
'brokenbar': 220,
'registered': 747,
'Gbreve': 778,
'Idotaccent': 389,
'summation': 600,
'Egrave': 667,
'racute': 444,
'omacron': 500,
'Zacute': 667,
'Zcaron': 667,
'greaterequal': 549,
'Eth': 722,
'Ccedilla': 722,
'lcommaaccent': 278,
'tcaron': 416,
'eogonek': 444,
'Uogonek': 722,
'Aacute': 722,
'Adieresis': 722,
'egrave': 444,
'zacute': 444,
'iogonek': 278,
'Oacute': 778,
'oacute': 500,
'amacron': 500,
'sacute': 389,
'idieresis': 278,
'Ocircumflex': 778,
'Ugrave': 722,
'Delta': 612,
'thorn': 556,
'twosuperior': 300,
'Odieresis': 778,
'mu': 556,
'igrave': 278,
'ohungarumlaut': 500,
'Eogonek': 667,
'dcroat': 556,
'threequarters': 750,
'Scedilla': 556,
'lcaron': 394,
'Kcommaaccent': 778,
'Lacute': 667,
'trademark': 1000,
'edotaccent': 444,
'Igrave': 389,
'Imacron': 389,
'Lcaron': 667,
'onehalf': 750,
'lessequal': 549,
'ocircumflex': 500,
'ntilde': 556,
'Uhungarumlaut': 722,
'Eacute': 667,
'emacron': 444,
'gbreve': 500,
'onequarter': 750,
'Scaron': 556,
'Scommaaccent': 556,
'Ohungarumlaut': 778,
'degree': 400,
'ograve': 500,
'Ccaron': 722,
'ugrave': 556,
'radical': 549,
'Dcaron': 722,
'rcommaaccent': 444,
'Ntilde': 722,
'otilde': 500,
'Rcommaaccent': 722,
'Lcommaaccent': 667,
'Atilde': 722,
'Aogonek': 722,
'Aring': 722,
'Otilde': 778,
'zdotaccent': 444,
'Ecaron': 667,
'Iogonek': 389,
'kcommaaccent': 556,
'minus': 570,
'Icircumflex': 389,
'ncaron': 556,
'tcommaaccent': 333,
'logicalnot': 570,
'odieresis': 500,
'udieresis': 556,
'notequal': 549,
'gcommaaccent': 500,
'eth': 500,
'zcaron': 444,
'ncommaaccent': 556,
'onesuperior': 300,
'imacron': 278,
'Euro': 500
},
'Times-BoldItalic': {
'space': 250,
'exclam': 389,
'quotedbl': 555,
'numbersign': 500,
'dollar': 500,
'percent': 833,
'ampersand': 778,
'quoteright': 333,
'parenleft': 333,
'parenright': 333,
'asterisk': 500,
'plus': 570,
'comma': 250,
'hyphen': 333,
'period': 250,
'slash': 278,
'zero': 500,
'one': 500,
'two': 500,
'three': 500,
'four': 500,
'five': 500,
'six': 500,
'seven': 500,
'eight': 500,
'nine': 500,
'colon': 333,
'semicolon': 333,
'less': 570,
'equal': 570,
'greater': 570,
'question': 500,
'at': 832,
'A': 667,
'B': 667,
'C': 667,
'D': 722,
'E': 667,
'F': 667,
'G': 722,
'H': 778,
'I': 389,
'J': 500,
'K': 667,
'L': 611,
'M': 889,
'N': 722,
'O': 722,
'P': 611,
'Q': 722,
'R': 667,
'S': 556,
'T': 611,
'U': 722,
'V': 667,
'W': 889,
'X': 667,
'Y': 611,
'Z': 611,
'bracketleft': 333,
'backslash': 278,
'bracketright': 333,
'asciicircum': 570,
'underscore': 500,
'quoteleft': 333,
'a': 500,
'b': 500,
'c': 444,
'd': 500,
'e': 444,
'f': 333,
'g': 500,
'h': 556,
'i': 278,
'j': 278,
'k': 500,
'l': 278,
'm': 778,
'n': 556,
'o': 500,
'p': 500,
'q': 500,
'r': 389,
's': 389,
't': 278,
'u': 556,
'v': 444,
'w': 667,
'x': 500,
'y': 444,
'z': 389,
'braceleft': 348,
'bar': 220,
'braceright': 348,
'asciitilde': 570,
'exclamdown': 389,
'cent': 500,
'sterling': 500,
'fraction': 167,
'yen': 500,
'florin': 500,
'section': 500,
'currency': 500,
'quotesingle': 278,
'quotedblleft': 500,
'guillemotleft': 500,
'guilsinglleft': 333,
'guilsinglright': 333,
'fi': 556,
'fl': 556,
'endash': 500,
'dagger': 500,
'daggerdbl': 500,
'periodcentered': 250,
'paragraph': 500,
'bullet': 350,
'quotesinglbase': 333,
'quotedblbase': 500,
'quotedblright': 500,
'guillemotright': 500,
'ellipsis': 1000,
'perthousand': 1000,
'questiondown': 500,
'grave': 333,
'acute': 333,
'circumflex': 333,
'tilde': 333,
'macron': 333,
'breve': 333,
'dotaccent': 333,
'dieresis': 333,
'ring': 333,
'cedilla': 333,
'hungarumlaut': 333,
'ogonek': 333,
'caron': 333,
'emdash': 1000,
'AE': 944,
'ordfeminine': 266,
'Lslash': 611,
'Oslash': 722,
'OE': 944,
'ordmasculine': 300,
'ae': 722,
'dotlessi': 278,
'lslash': 278,
'oslash': 500,
'oe': 722,
'germandbls': 500,
'Idieresis': 389,
'eacute': 444,
'abreve': 500,
'uhungarumlaut': 556,
'ecaron': 444,
'Ydieresis': 611,
'divide': 570,
'Yacute': 611,
'Acircumflex': 667,
'aacute': 500,
'Ucircumflex': 722,
'yacute': 444,
'scommaaccent': 389,
'ecircumflex': 444,
'Uring': 722,
'Udieresis': 722,
'aogonek': 500,
'Uacute': 722,
'uogonek': 556,
'Edieresis': 667,
'Dcroat': 722,
'commaaccent': 250,
'copyright': 747,
'Emacron': 667,
'ccaron': 444,
'aring': 500,
'Ncommaaccent': 722,
'lacute': 278,
'agrave': 500,
'Tcommaaccent': 611,
'Cacute': 667,
'atilde': 500,
'Edotaccent': 667,
'scaron': 389,
'scedilla': 389,
'iacute': 278,
'lozenge': 494,
'Rcaron': 667,
'Gcommaaccent': 722,
'ucircumflex': 556,
'acircumflex': 500,
'Amacron': 667,
'rcaron': 389,
'ccedilla': 444,
'Zdotaccent': 611,
'Thorn': 611,
'Omacron': 722,
'Racute': 667,
'Sacute': 556,
'dcaron': 608,
'Umacron': 722,
'uring': 556,
'threesuperior': 300,
'Ograve': 722,
'Agrave': 667,
'Abreve': 667,
'multiply': 570,
'uacute': 556,
'Tcaron': 611,
'partialdiff': 494,
'ydieresis': 444,
'Nacute': 722,
'icircumflex': 278,
'Ecircumflex': 667,
'adieresis': 500,
'edieresis': 444,
'cacute': 444,
'nacute': 556,
'umacron': 556,
'Ncaron': 722,
'Iacute': 389,
'plusminus': 570,
'brokenbar': 220,
'registered': 747,
'Gbreve': 722,
'Idotaccent': 389,
'summation': 600,
'Egrave': 667,
'racute': 389,
'omacron': 500,
'Zacute': 611,
'Zcaron': 611,
'greaterequal': 549,
'Eth': 722,
'Ccedilla': 667,
'lcommaaccent': 278,
'tcaron': 366,
'eogonek': 444,
'Uogonek': 722,
'Aacute': 667,
'Adieresis': 667,
'egrave': 444,
'zacute': 389,
'iogonek': 278,
'Oacute': 722,
'oacute': 500,
'amacron': 500,
'sacute': 389,
'idieresis': 278,
'Ocircumflex': 722,
'Ugrave': 722,
'Delta': 612,
'thorn': 500,
'twosuperior': 300,
'Odieresis': 722,
'mu': 576,
'igrave': 278,
'ohungarumlaut': 500,
'Eogonek': 667,
'dcroat': 500,
'threequarters': 750,
'Scedilla': 556,
'lcaron': 382,
'Kcommaaccent': 667,
'Lacute': 611,
'trademark': 1000,
'edotaccent': 444,
'Igrave': 389,
'Imacron': 389,
'Lcaron': 611,
'onehalf': 750,
'lessequal': 549,
'ocircumflex': 500,
'ntilde': 556,
'Uhungarumlaut': 722,
'Eacute': 667,
'emacron': 444,
'gbreve': 500,
'onequarter': 750,
'Scaron': 556,
'Scommaaccent': 556,
'Ohungarumlaut': 722,
'degree': 400,
'ograve': 500,
'Ccaron': 667,
'ugrave': 556,
'radical': 549,
'Dcaron': 722,
'rcommaaccent': 389,
'Ntilde': 722,
'otilde': 500,
'Rcommaaccent': 667,
'Lcommaaccent': 611,
'Atilde': 667,
'Aogonek': 667,
'Aring': 667,
'Otilde': 722,
'zdotaccent': 389,
'Ecaron': 667,
'Iogonek': 389,
'kcommaaccent': 500,
'minus': 606,
'Icircumflex': 389,
'ncaron': 556,
'tcommaaccent': 278,
'logicalnot': 606,
'odieresis': 500,
'udieresis': 556,
'notequal': 549,
'gcommaaccent': 500,
'eth': 500,
'zcaron': 389,
'ncommaaccent': 556,
'onesuperior': 300,
'imacron': 278,
'Euro': 500
},
'Times-Italic': {
'space': 250,
'exclam': 333,
'quotedbl': 420,
'numbersign': 500,
'dollar': 500,
'percent': 833,
'ampersand': 778,
'quoteright': 333,
'parenleft': 333,
'parenright': 333,
'asterisk': 500,
'plus': 675,
'comma': 250,
'hyphen': 333,
'period': 250,
'slash': 278,
'zero': 500,
'one': 500,
'two': 500,
'three': 500,
'four': 500,
'five': 500,
'six': 500,
'seven': 500,
'eight': 500,
'nine': 500,
'colon': 333,
'semicolon': 333,
'less': 675,
'equal': 675,
'greater': 675,
'question': 500,
'at': 920,
'A': 611,
'B': 611,
'C': 667,
'D': 722,
'E': 611,
'F': 611,
'G': 722,
'H': 722,
'I': 333,
'J': 444,
'K': 667,
'L': 556,
'M': 833,
'N': 667,
'O': 722,
'P': 611,
'Q': 722,
'R': 611,
'S': 500,
'T': 556,
'U': 722,
'V': 611,
'W': 833,
'X': 611,
'Y': 556,
'Z': 556,
'bracketleft': 389,
'backslash': 278,
'bracketright': 389,
'asciicircum': 422,
'underscore': 500,
'quoteleft': 333,
'a': 500,
'b': 500,
'c': 444,
'd': 500,
'e': 444,
'f': 278,
'g': 500,
'h': 500,
'i': 278,
'j': 278,
'k': 444,
'l': 278,
'm': 722,
'n': 500,
'o': 500,
'p': 500,
'q': 500,
'r': 389,
's': 389,
't': 278,
'u': 500,
'v': 444,
'w': 667,
'x': 444,
'y': 444,
'z': 389,
'braceleft': 400,
'bar': 275,
'braceright': 400,
'asciitilde': 541,
'exclamdown': 389,
'cent': 500,
'sterling': 500,
'fraction': 167,
'yen': 500,
'florin': 500,
'section': 500,
'currency': 500,
'quotesingle': 214,
'quotedblleft': 556,
'guillemotleft': 500,
'guilsinglleft': 333,
'guilsinglright': 333,
'fi': 500,
'fl': 500,
'endash': 500,
'dagger': 500,
'daggerdbl': 500,
'periodcentered': 250,
'paragraph': 523,
'bullet': 350,
'quotesinglbase': 333,
'quotedblbase': 556,
'quotedblright': 556,
'guillemotright': 500,
'ellipsis': 889,
'perthousand': 1000,
'questiondown': 500,
'grave': 333,
'acute': 333,
'circumflex': 333,
'tilde': 333,
'macron': 333,
'breve': 333,
'dotaccent': 333,
'dieresis': 333,
'ring': 333,
'cedilla': 333,
'hungarumlaut': 333,
'ogonek': 333,
'caron': 333,
'emdash': 889,
'AE': 889,
'ordfeminine': 276,
'Lslash': 556,
'Oslash': 722,
'OE': 944,
'ordmasculine': 310,
'ae': 667,
'dotlessi': 278,
'lslash': 278,
'oslash': 500,
'oe': 667,
'germandbls': 500,
'Idieresis': 333,
'eacute': 444,
'abreve': 500,
'uhungarumlaut': 500,
'ecaron': 444,
'Ydieresis': 556,
'divide': 675,
'Yacute': 556,
'Acircumflex': 611,
'aacute': 500,
'Ucircumflex': 722,
'yacute': 444,
'scommaaccent': 389,
'ecircumflex': 444,
'Uring': 722,
'Udieresis': 722,
'aogonek': 500,
'Uacute': 722,
'uogonek': 500,
'Edieresis': 611,
'Dcroat': 722,
'commaaccent': 250,
'copyright': 760,
'Emacron': 611,
'ccaron': 444,
'aring': 500,
'Ncommaaccent': 667,
'lacute': 278,
'agrave': 500,
'Tcommaaccent': 556,
'Cacute': 667,
'atilde': 500,
'Edotaccent': 611,
'scaron': 389,
'scedilla': 389,
'iacute': 278,
'lozenge': 471,
'Rcaron': 611,
'Gcommaaccent': 722,
'ucircumflex': 500,
'acircumflex': 500,
'Amacron': 611,
'rcaron': 389,
'ccedilla': 444,
'Zdotaccent': 556,
'Thorn': 611,
'Omacron': 722,
'Racute': 611,
'Sacute': 500,
'dcaron': 544,
'Umacron': 722,
'uring': 500,
'threesuperior': 300,
'Ograve': 722,
'Agrave': 611,
'Abreve': 611,
'multiply': 675,
'uacute': 500,
'Tcaron': 556,
'partialdiff': 476,
'ydieresis': 444,
'Nacute': 667,
'icircumflex': 278,
'Ecircumflex': 611,
'adieresis': 500,
'edieresis': 444,
'cacute': 444,
'nacute': 500,
'umacron': 500,
'Ncaron': 667,
'Iacute': 333,
'plusminus': 675,
'brokenbar': 275,
'registered': 760,
'Gbreve': 722,
'Idotaccent': 333,
'summation': 600,
'Egrave': 611,
'racute': 389,
'omacron': 500,
'Zacute': 556,
'Zcaron': 556,
'greaterequal': 549,
'Eth': 722,
'Ccedilla': 667,
'lcommaaccent': 278,
'tcaron': 300,
'eogonek': 444,
'Uogonek': 722,
'Aacute': 611,
'Adieresis': 611,
'egrave': 444,
'zacute': 389,
'iogonek': 278,
'Oacute': 722,
'oacute': 500,
'amacron': 500,
'sacute': 389,
'idieresis': 278,
'Ocircumflex': 722,
'Ugrave': 722,
'Delta': 612,
'thorn': 500,
'twosuperior': 300,
'Odieresis': 722,
'mu': 500,
'igrave': 278,
'ohungarumlaut': 500,
'Eogonek': 611,
'dcroat': 500,
'threequarters': 750,
'Scedilla': 500,
'lcaron': 300,
'Kcommaaccent': 667,
'Lacute': 556,
'trademark': 980,
'edotaccent': 444,
'Igrave': 333,
'Imacron': 333,
'Lcaron': 611,
'onehalf': 750,
'lessequal': 549,
'ocircumflex': 500,
'ntilde': 500,
'Uhungarumlaut': 722,
'Eacute': 611,
'emacron': 444,
'gbreve': 500,
'onequarter': 750,
'Scaron': 500,
'Scommaaccent': 500,
'Ohungarumlaut': 722,
'degree': 400,
'ograve': 500,
'Ccaron': 667,
'ugrave': 500,
'radical': 453,
'Dcaron': 722,
'rcommaaccent': 389,
'Ntilde': 667,
'otilde': 500,
'Rcommaaccent': 611,
'Lcommaaccent': 556,
'Atilde': 611,
'Aogonek': 611,
'Aring': 611,
'Otilde': 722,
'zdotaccent': 389,
'Ecaron': 611,
'Iogonek': 333,
'kcommaaccent': 444,
'minus': 675,
'Icircumflex': 333,
'ncaron': 500,
'tcommaaccent': 278,
'logicalnot': 675,
'odieresis': 500,
'udieresis': 500,
'notequal': 549,
'gcommaaccent': 500,
'eth': 500,
'zcaron': 389,
'ncommaaccent': 500,
'onesuperior': 300,
'imacron': 278,
'Euro': 500
},
'ZapfDingbats': {
'space': 278,
'a1': 974,
'a2': 961,
'a202': 974,
'a3': 980,
'a4': 719,
'a5': 789,
'a119': 790,
'a118': 791,
'a117': 690,
'a11': 960,
'a12': 939,
'a13': 549,
'a14': 855,
'a15': 911,
'a16': 933,
'a105': 911,
'a17': 945,
'a18': 974,
'a19': 755,
'a20': 846,
'a21': 762,
'a22': 761,
'a23': 571,
'a24': 677,
'a25': 763,
'a26': 760,
'a27': 759,
'a28': 754,
'a6': 494,
'a7': 552,
'a8': 537,
'a9': 577,
'a10': 692,
'a29': 786,
'a30': 788,
'a31': 788,
'a32': 790,
'a33': 793,
'a34': 794,
'a35': 816,
'a36': 823,
'a37': 789,
'a38': 841,
'a39': 823,
'a40': 833,
'a41': 816,
'a42': 831,
'a43': 923,
'a44': 744,
'a45': 723,
'a46': 749,
'a47': 790,
'a48': 792,
'a49': 695,
'a50': 776,
'a51': 768,
'a52': 792,
'a53': 759,
'a54': 707,
'a55': 708,
'a56': 682,
'a57': 701,
'a58': 826,
'a59': 815,
'a60': 789,
'a61': 789,
'a62': 707,
'a63': 687,
'a64': 696,
'a65': 689,
'a66': 786,
'a67': 787,
'a68': 713,
'a69': 791,
'a70': 785,
'a71': 791,
'a72': 873,
'a73': 761,
'a74': 762,
'a203': 762,
'a75': 759,
'a204': 759,
'a76': 892,
'a77': 892,
'a78': 788,
'a79': 784,
'a81': 438,
'a82': 138,
'a83': 277,
'a84': 415,
'a97': 392,
'a98': 392,
'a99': 668,
'a100': 668,
'a89': 390,
'a90': 390,
'a93': 317,
'a94': 317,
'a91': 276,
'a92': 276,
'a205': 509,
'a85': 509,
'a206': 410,
'a86': 410,
'a87': 234,
'a88': 234,
'a95': 334,
'a96': 334,
'a101': 732,
'a102': 544,
'a103': 544,
'a104': 910,
'a106': 667,
'a107': 760,
'a108': 760,
'a112': 776,
'a111': 595,
'a110': 694,
'a109': 626,
'a120': 788,
'a121': 788,
'a122': 788,
'a123': 788,
'a124': 788,
'a125': 788,
'a126': 788,
'a127': 788,
'a128': 788,
'a129': 788,
'a130': 788,
'a131': 788,
'a132': 788,
'a133': 788,
'a134': 788,
'a135': 788,
'a136': 788,
'a137': 788,
'a138': 788,
'a139': 788,
'a140': 788,
'a141': 788,
'a142': 788,
'a143': 788,
'a144':
'a145':
'a146':
'a147':
'a148':
'a149':
'a150':
'a151':
'a152':
'a153':
'a154':
'a155':
'a156':
'a157':
'a158':
'a159':
'a160':
'a161':
'a163':
'a164':
'a196':
'a165':
'a192':
'a166':
'a167':
'a168':
'a169':
'a170':
'a171':
'a172':
'a173':
'a162':
'a174':
'a175':
'a176':
'a177':
'a178':
'a179':
'a193':
'a180':
'a199':
'a181':
'a200':
'a182':
'a201':
'a183':
'a184':
'a197':
'a185':
'a194':
'a198':
'a186':
'a195':
'a187':
'a188':
'a189':
'a190':
'a191':
}
};
788,
788,
788,
788,
788,
788,
788,
788,
788,
788,
788,
788,
788,
788,
788,
788,
894,
838,
1016,
458,
748,
924,
748,
918,
927,
928,
928,
834,
873,
828,
924,
924,
917,
930,
931,
463,
883,
836,
836,
867,
867,
696,
696,
874,
874,
760,
946,
771,
865,
771,
888,
967,
888,
831,
873,
927,
970,
918
dict.set(key, this.getObj(cipherTransform));
}
if (isEOF(this.buf1))
error('End of file inside dictionary');
// stream objects are not allowed inside content streams or
// object streams
if (isCmd(this.buf2, 'stream')) {
return this.allowStreams ?
this.makeStream(dict, cipherTransform) : dict;
}
this.shift();
return dict;
}
if (isInt(this.buf1)) { // indirect reference or integer
var num = this.buf1;
this.shift();
if (isInt(this.buf1) && isCmd(this.buf2, 'R')) {
var ref = new Ref(num, this.buf1);
this.shift();
this.shift();
return ref;
}
return num;
}
if (isString(this.buf1)) { // string
var str = this.buf1;
this.shift();
if (cipherTransform)
str = cipherTransform.decryptString(str);
return str;
}
// simple object
var obj = this.buf1;
this.shift();
return obj;
},
makeInlineImage: function Parser_makeInlineImage(cipherTransform) {
var lexer = this.lexer;
var stream = lexer.stream;
// parse dictionary
var dict = new Dict();
while (!isCmd(this.buf1, 'ID') && !isEOF(this.buf1)) {
if (!isName(this.buf1))
error('Dictionary key must be a name object');
var key = this.buf1.name;
this.shift();
if (isEOF(this.buf1))
break;
dict.set(key, this.getObj(cipherTransform));
}
// parse image stream
var startPos = stream.pos;
// searching for the /EI\s/
var state = 0, ch;
this.shift(); // 'stream'
if (!isCmd(this.buf1, 'endstream'))
error('Missing endstream');
this.shift();
stream = stream.makeSubStream(pos, length, dict);
if (cipherTransform)
stream = cipherTransform.createStream(stream);
stream = this.filter(stream, dict, length);
stream.parameters = dict;
return stream;
},
filter: function Parser_filter(stream, dict, length) {
var filter = this.fetchIfRef(dict.get('Filter', 'F'));
var params = this.fetchIfRef(dict.get('DecodeParms', 'DP'));
if (isName(filter))
return this.makeFilter(stream, filter.name, length, params);
if (isArray(filter)) {
var filterArray = filter;
var paramsArray = params;
for (var i = 0, ii = filterArray.length; i < ii; ++i) {
filter = filterArray[i];
if (!isName(filter))
error('Bad filter name: ' + filter);
params = null;
if (isArray(paramsArray) && (i in paramsArray))
params = paramsArray[i];
stream = this.makeFilter(stream, filter.name, length, params);
// after the first stream the length variable is invalid
length = null;
}
}
return stream;
},
makeFilter: function Parser_makeFilter(stream, name, length, params) {
if (stream.dict.get('Length') === 0) {
return new NullStream(stream);
}
if (name == 'FlateDecode' || name == 'Fl') {
if (params) {
return new PredictorStream(new FlateStream(stream), params);
}
return new FlateStream(stream);
}
if (name == 'LZWDecode' || name == 'LZW') {
var earlyChange = 1;
if (params) {
if (params.has('EarlyChange'))
earlyChange = params.get('EarlyChange');
return new PredictorStream(
new LZWStream(stream, earlyChange), params);
}
return new LZWStream(stream, earlyChange);
}
if (name == 'DCTDecode' || name == 'DCT') {
var bytes = stream.getBytes(length);
return new JpegStream(bytes, stream.dict, this.xref);
}
if (name == 'JPXDecode' || name == 'JPX') {
space. A '1' or
//
//
//
//
//
//
//
//
//
//
//
//
//
0x
1x
2x
3x
4x
5x
6x
7x
8x
9x
ax
bx
cx
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// dx
// ex
// fx
];
function toHexDigit(ch) {
if (ch >= '0' && ch <= '9')
return ch.charCodeAt(0) - 48;
ch = ch.toUpperCase();
if (ch >= 'A' && ch <= 'F')
return ch.charCodeAt(0) - 55;
return -1;
}
Lexer.prototype = {
getNumber: function Lexer_getNumber(ch) {
var floating = false;
var str = ch;
var stream = this.stream;
while ((ch = stream.lookChar())) {
if (ch == '.' && !floating) {
str += ch;
floating = true;
} else if (ch == '-') {
// ignore minus signs in the middle of numbers to match
// Adobe's behavior
warn('Badly formated number');
} else if (ch >= '0' && ch <= '9') {
str += ch;
} else if (ch == 'e' || ch == 'E') {
floating = true;
} else {
// the last character doesn't belong to us
break;
}
stream.skip();
}
var value = parseFloat(str);
if (isNaN(value))
error('Invalid floating point number: ' + value);
return value;
},
getString: function Lexer_getString() {
var numParen = 1;
var done = false;
var str = '';
var stream = this.stream;
var ch;
do {
ch = stream.getChar();
switch (ch) {
case undefined:
warn('Unterminated string');
done = true;
break;
case '(':
++numParen;
str += ch;
break;
case ')':
if (--numParen == 0) {
done = true;
} else {
str += ch;
}
break;
case '\\':
ch = stream.getChar();
switch (ch) {
case undefined:
warn('Unterminated string');
done = true;
break;
case 'n':
str += '\n';
break;
case 'r':
str += '\r';
break;
case 't':
str += '\t';
break;
case 'b':
str += '\b';
break;
case 'f':
str += '\f';
break;
case '\\':
case '(':
case ')':
str += ch;
break;
case '0': case '1': case '2': case '3':
case '4': case '5': case '6': case '7':
var x = ch - '0';
ch = stream.lookChar();
if (ch >= '0' && ch <= '7') {
stream.skip();
x = (x << 3) + (ch - '0');
ch = stream.lookChar();
if (ch >= '0' && ch <= '7') {
stream.skip();
x = (x << 3) + (ch - '0');
}
}
str += String.fromCharCode(x);
break;
case '\r':
ch = stream.lookChar();
if (ch == '\n')
stream.skip();
break;
case '\n':
break;
default:
str += ch;
}
break;
default:
str += ch;
}
} while (!done);
return str;
},
getName: function Lexer_getName(ch) {
var str = '';
var stream = this.stream;
while (!!(ch = stream.lookChar()) && !specialChars[ch.charCodeAt(0)]) {
stream.skip();
if (ch == '#') {
ch = stream.lookChar();
var x = toHexDigit(ch);
if (x != -1) {
stream.skip();
var x2 = toHexDigit(stream.getChar());
if (x2 == -1)
error('Illegal digit in hex char in name: ' + x2);
str += String.fromCharCode((x << 4) | x2);
} else {
str += '#';
str += ch;
}
} else {
str += ch;
}
}
if (str.length > 128)
error('Warning: name token is longer than allowed by the spec: ' +
str.length);
return new Name(str);
},
getHexString: function Lexer_getHexString(ch) {
var str = '';
var stream = this.stream;
for (;;) {
ch = stream.getChar();
if (ch == '>') {
break;
}
if (!ch) {
warn('Unterminated hex string');
break;
}
if (specialChars[ch.charCodeAt(0)] != 1) {
var x, x2;
if ((x = toHexDigit(ch)) == -1)
error('Illegal character in hex string: ' + ch);
ch = stream.getChar();
while (specialChars[ch.charCodeAt(0)] == 1)
ch = stream.getChar();
if ((x2 = toHexDigit(ch)) == -1)
error('Illegal character in hex string: ' + ch);
str += String.fromCharCode((x << 4) | x2);
}
}
return str;
},
getObj: function Lexer_getObj() {
// skip whitespace and comments
var comment = false;
var stream = this.stream;
var ch;
while (true) {
if (!(ch = stream.getChar()))
return EOF;
if (comment) {
if (ch == '\r' || ch == '\n')
comment = false;
} else if (ch == '%') {
comment = true;
} else if (specialChars[ch.charCodeAt(0)] != 1) {
break;
}
}
// start reading token
switch (ch) {
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
case '+': case '-': case '.':
return this.getNumber(ch);
case '(':
return this.getString();
case '/':
return this.getName(ch);
// array punctuation
case '[':
case ']':
return Cmd.get(ch);
// hex string or dict punctuation
case '<':
ch = stream.lookChar();
if (ch == '<') {
// dict punctuation
stream.skip();
return Cmd.get('<<');
}
return this.getHexString(ch);
// dict punctuation
case '>':
ch = stream.lookChar();
if (ch == '>') {
stream.skip();
return Cmd.get('>>');
}
case '{':
case '}':
return Cmd.get(ch);
// fall through
case ')':
error('Illegal character: ' + ch);
}
// command
var str = ch;
var obj;
if (isDict(linDict) &&
isInt(obj = linDict.get(name)) &&
obj > 0) {
return obj;
}
error('"' + name + '" field in linearization table is invalid');
},
getHint: function Linearization_getHint(index) {
var linDict = this.linDict;
var obj1, obj2;
if (isDict(linDict) &&
isArray(obj1 = linDict.get('H')) &&
obj1.length >= 2 &&
isInt(obj2 = obj1[index]) &&
obj2 > 0) {
return obj2;
}
error('Hints table in linearization table is invalid: ' + index);
},
get length() {
if (!isDict(this.linDict))
return 0;
return this.getInt('L');
},
get hintsOffset() {
return this.getHint(0);
},
get hintsLength() {
return this.getHint(1);
},
get hintsOffset2() {
return this.getHint(2);
},
get hintsLenth2() {
return this.getHint(3);
},
get objectNumberFirst() {
return this.getInt('O');
},
get endFirst() {
return this.getInt('E');
},
get numPages() {
return this.getInt('N');
},
get mainXRefEntriesOffset() {
return this.getInt('T');
},
get pageFirst() {
return this.getInt('P');
}
};
return Linearization;
})();
var PatternType = {
AXIAL: 2,
RADIAL: 3
};
var Pattern = (function PatternClosure() {
// Constructor should define this.getPattern
function Pattern() {
error('should not call Pattern constructor');
}
Pattern.prototype = {
// Input: current Canvas context
// Output: the appropriate fillStyle or strokeStyle
getPattern: function Pattern_getPattern(ctx) {
error('Should not call Pattern.getStyle: ' + ctx);
}
};
Pattern.shadingFromIR = function Pattern_shadingFromIR(raw) {
return Shadings[raw[0]].fromIR(raw);
};
Pattern.parseShading = function Pattern_parseShading(shading, matrix, xref,
res) {
var dict = isStream(shading) ? shading.dict : shading;
var type = dict.get('ShadingType');
switch (type) {
case PatternType.AXIAL:
case PatternType.RADIAL:
// Both radial and axial shadings are handled by RadialAxial shading.
return new Shadings.RadialAxial(dict, matrix, xref, res);
default:
TODO('Unsupported shading type: ' + type);
return new Shadings.Dummy();
}
};
return Pattern;
})();
var Shadings = {};
// A small number to offset the first/last color stops so we can insert ones to
// support extend. Number.MIN_VALUE appears to be too small and breaks the
// extend. 1e-7 works in FF but chrome seems to use an even smaller sized number
// internally so we have to go bigger.
Shadings.SMALL_NUMBER = 1e-2;
// Radial and axial shading have very similar implementations
// If needed, the implementations can be broken into two classes
Shadings.RadialAxial = (function RadialAxialClosure() {
function RadialAxial(dict, matrix, xref, res, ctx) {
this.matrix = matrix;
this.coordsArr = dict.get('Coords');
this.shadingType = dict.get('ShadingType');
this.type = 'Pattern';
this.ctx = ctx;
var cs = dict.get('ColorSpace', 'CS');
cs = ColorSpace.parse(cs, xref, res);
this.cs = cs;
var t0 = 0.0, t1 = 1.0;
if (dict.has('Domain')) {
var domainArr = dict.get('Domain');
t0 = domainArr[0];
t1 = domainArr[1];
}
var extendStart = false, extendEnd = false;
if (dict.has('Extend')) {
var extendArr = dict.get('Extend');
extendStart = extendArr[0];
extendEnd = extendArr[1];
}
if (this.shadingType === PatternType.RADIAL &&
(!extendStart || !extendEnd)) {
// Radial gradient only currently works if either circle is fully within
// the other circle.
var x1 = this.coordsArr[0];
var y1 = this.coordsArr[1];
var r1 = this.coordsArr[2];
var x2 = this.coordsArr[3];
var y2 = this.coordsArr[4];
var r2 = this.coordsArr[5];
var distance = Math.sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));
if (r1 <= r2 + distance &&
r2 <= r1 + distance) {
warn('Unsupported radial gradient.');
}
}
this.extendStart = extendStart;
this.extendEnd = extendEnd;
var fnObj = dict.get('Function');
if (isArray(fnObj))
error('No support for array of functions');
if (!isPDFFunction(fnObj))
error('Invalid function');
var fn = PDFFunction.parse(xref, fnObj);
// 10 samples seems good enough for now, but probably won't work
// if there are sharp color changes. Ideally, we would implement
// the spec faithfully and add lossless optimizations.
var diff = t1 - t0;
var step = diff / 10;
var colorStops = this.colorStops = [];
// Protect against bad domains so we don't end up in an infinte loop below.
if (t0 >= t1 || step <= 0) {
// Acrobat doesn't seem to handle these cases so we'll ignore for
// now.
info('Bad shading domain.');
return;
}
for (var i = t0; i <= t1; i += step) {
graphics.executeOperatorList(operatorList);
this.canvas = tmpCanvas;
}
TilingPattern.getIR = function TilingPattern_getIR(operatorList, dict, args) {
var matrix = dict.get('Matrix');
var bbox = dict.get('BBox');
var xstep = dict.get('XStep');
var ystep = dict.get('YStep');
var paintType = dict.get('PaintType');
var tilingType = dict.get('TilingType');
return [
'TilingPattern', args, operatorList, matrix, bbox, xstep, ystep,
paintType, tilingType
];
};
TilingPattern.prototype = {
getPattern: function TilingPattern_getPattern() {
var matrix = this.matrix;
var curMatrix = this.curMatrix;
var ctx = this.ctx;
if (curMatrix)
ctx.setTransform.apply(ctx, curMatrix);
if (matrix)
ctx.transform.apply(ctx, matrix);
var scale = this.scale;
ctx.scale(1 / scale[0], 1 / scale[1]);
return ctx.createPattern(this.canvas, 'repeat');
}
};
return TilingPattern;
})();
StringStream.prototype = Stream.prototype;
return StringStream;
})();
// super class for the decoding streams
var DecodeStream = (function DecodeStreamClosure() {
function DecodeStream() {
this.pos = 0;
this.bufferLength = 0;
this.eof = false;
this.buffer = null;
}
DecodeStream.prototype = {
ensureBuffer: function DecodeStream_ensureBuffer(requested) {
var buffer = this.buffer;
var current = buffer ? buffer.byteLength : 0;
if (requested < current)
return buffer;
var size = 512;
while (size < requested)
size <<= 1;
var buffer2 = new Uint8Array(size);
for (var i = 0; i < current; ++i)
buffer2[i] = buffer[i];
return (this.buffer = buffer2);
},
getByte: function DecodeStream_getByte() {
var pos = this.pos;
while (this.bufferLength <= pos) {
if (this.eof)
return null;
this.readBlock();
}
return this.buffer[this.pos++];
},
getBytes: function DecodeStream_getBytes(length) {
var end, pos = this.pos;
if (length) {
this.ensureBuffer(pos + length);
end = pos + length;
while (!this.eof && this.bufferLength < end)
this.readBlock();
var bufEnd = this.bufferLength;
if (end > bufEnd)
end = bufEnd;
} else {
while (!this.eof)
this.readBlock();
end = this.bufferLength;
// checking if bufferLength is still 0 then
// the buffer has to be initialized
if (!end)
this.buffer = new Uint8Array(0);
}
this.pos = end;
return this.buffer.subarray(pos, end);
},
lookChar: function DecodeStream_lookChar() {
var pos = this.pos;
while (this.bufferLength <= pos) {
if (this.eof)
return null;
this.readBlock();
}
return String.fromCharCode(this.buffer[this.pos]);
},
getChar: function DecodeStream_getChar() {
var pos = this.pos;
while (this.bufferLength <= pos) {
if (this.eof)
return null;
this.readBlock();
}
return String.fromCharCode(this.buffer[this.pos++]);
},
makeSubStream: function DecodeStream_makeSubStream(start, length, dict) {
var end = start + length;
while (this.bufferLength <= end && !this.eof)
this.readBlock();
return new Stream(this.buffer, start, length, dict);
},
skip: function DecodeStream_skip(n) {
if (!n)
n = 1;
this.pos += n;
},
reset: function DecodeStream_reset() {
this.pos = 0;
}
};
return DecodeStream;
})();
var FakeStream = (function FakeStreamClosure() {
function FakeStream(stream) {
this.dict = stream.dict;
DecodeStream.call(this);
}
FakeStream.prototype = Object.create(DecodeStream.prototype);
FakeStream.prototype.readBlock = function FakeStream_readBlock() {
var bufferLength = this.bufferLength;
bufferLength += 1024;
var buffer = this.ensureBuffer(bufferLength);
this.bufferLength = bufferLength;
};
FakeStream.prototype.getBytes = function FakeStream_getBytes(length) {
var end, pos = this.pos;
if (length) {
this.ensureBuffer(pos + length);
end = pos + length;
while (!this.eof && this.bufferLength < end)
this.readBlock();
var bufEnd = this.bufferLength;
if (end > bufEnd)
end = bufEnd;
} else {
this.eof = true;
end = this.bufferLength;
}
this.pos = end;
return this.buffer.subarray(pos, end);
};
return FakeStream;
})();
var StreamsSequenceStream = (function StreamsSequenceStreamClosure() {
function StreamsSequenceStream(streams) {
this.streams = streams;
DecodeStream.call(this);
}
StreamsSequenceStream.prototype = Object.create(DecodeStream.prototype);
StreamsSequenceStream.prototype.readBlock =
function streamSequenceStreamReadBlock() {
var streams = this.streams;
if (streams.length == 0) {
this.eof = true;
return;
}
var stream = streams.shift();
var chunk = stream.getBytes();
var bufferLength = this.bufferLength;
var newLength = bufferLength + chunk.length;
var buffer = this.ensureBuffer(newLength);
buffer.set(chunk, bufferLength);
this.bufferLength = newLength;
};
return StreamsSequenceStream;
})();
var FlateStream = (function FlateStreamClosure() {
var codeLenCodeMap = new Uint32Array([
16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15
]);
var lengthDecode = new Uint32Array([
0x00003, 0x00004, 0x00005, 0x00006,
0x1000b, 0x1000d, 0x1000f, 0x10011,
0x30023, 0x3002b, 0x30033, 0x3003b,
0x50083, 0x500a3, 0x500c3, 0x500e3,
]);
0x00007,
0x20013,
0x40043,
0x00102,
0x00008,
0x20017,
0x40053,
0x00102,
0x00009, 0x0000a,
0x2001b, 0x2001f,
0x40063, 0x40073,
0x00102
0x10005,
0x50041,
0x90401,
0xd4001,
= [new Uint32Array([
0x80010, 0x80118, 0x70110,
0x80020, 0x900a0, 0x80000,
0x80018, 0x90090, 0x70114,
0x80028, 0x900b0, 0x80008,
0x80014, 0x8011c, 0x70112,
0x80024, 0x900a8, 0x80004,
0x8001c, 0x90098, 0x70116,
0x8002c, 0x900b8, 0x8000c,
0x80012, 0x8011a, 0x70111,
0x80022, 0x900a4, 0x80002,
0x8001a, 0x90094, 0x70115,
0x8002a, 0x900b4, 0x8000a,
0x80016, 0x8011e, 0x70113,
0x80026, 0x900ac, 0x80006,
0x8001e, 0x9009c, 0x70117,
0x8002e, 0x900bc, 0x8000e,
0x80011, 0x80119, 0x70110,
0x80021, 0x900a2, 0x80001,
0x80019, 0x90092, 0x70114,
0x80029, 0x900b2, 0x80009,
0x80015, 0x8011d, 0x70112,
0x80025, 0x900aa, 0x80005,
0x8001d, 0x9009a, 0x70116,
0x8002d, 0x900ba, 0x8000d,
0x80013, 0x8011b, 0x70111,
0x80023, 0x900a6, 0x80003,
0x8001b, 0x90096, 0x70115,
0x8002b, 0x900b6, 0x8000b,
0x80017, 0x8011f, 0x70113,
0x80027, 0x900ae, 0x80007,
0x8001f, 0x9009e, 0x70117,
0x8002f, 0x900be, 0x8000f,
0x80010, 0x80118, 0x70110,
0x80020, 0x900a1, 0x80000,
0x80018, 0x90091, 0x70114,
0x80028, 0x900b1, 0x80008,
0x80014, 0x8011c, 0x70112,
0x80024, 0x900a9, 0x80004,
0x8001c, 0x90099, 0x70116,
0x8002c, 0x900b9, 0x8000c,
0x80012, 0x8011a, 0x70111,
0x80022, 0x900a5, 0x80002,
0x8001a, 0x90095, 0x70115,
0x8002a, 0x900b5, 0x8000a,
0x80016, 0x8011e, 0x70113,
0x80026, 0x900ad, 0x80006,
0x8001e, 0x9009d, 0x70117,
0x8002e, 0x900bd, 0x8000e,
0x80011, 0x80119, 0x70110,
0x80021, 0x900a3, 0x80001,
0x80019, 0x90093, 0x70114,
0x80070,
0x80080,
0x80078,
0x80088,
0x80074,
0x80084,
0x8007c,
0x8008c,
0x80072,
0x80082,
0x8007a,
0x8008a,
0x80076,
0x80086,
0x8007e,
0x8008e,
0x80071,
0x80081,
0x80079,
0x80089,
0x80075,
0x80085,
0x8007d,
0x8008d,
0x80073,
0x80083,
0x8007b,
0x8008b,
0x80077,
0x80087,
0x8007f,
0x8008f,
0x80070,
0x80080,
0x80078,
0x80088,
0x80074,
0x80084,
0x8007c,
0x8008c,
0x80072,
0x80082,
0x8007a,
0x8008a,
0x80076,
0x80086,
0x8007e,
0x8008e,
0x80071,
0x80081,
0x80079,
0x80030,
0x80040,
0x80038,
0x80048,
0x80034,
0x80044,
0x8003c,
0x8004c,
0x80032,
0x80042,
0x8003a,
0x8004a,
0x80036,
0x80046,
0x8003e,
0x8004e,
0x80031,
0x80041,
0x80039,
0x80049,
0x80035,
0x80045,
0x8003d,
0x8004d,
0x80033,
0x80043,
0x8003b,
0x8004b,
0x80037,
0x80047,
0x8003f,
0x8004f,
0x80030,
0x80040,
0x80038,
0x80048,
0x80034,
0x80044,
0x8003c,
0x8004c,
0x80032,
0x80042,
0x8003a,
0x8004a,
0x80036,
0x80046,
0x8003e,
0x8004e,
0x80031,
0x80041,
0x80039,
0x900c0,
0x900e0,
0x900d0,
0x900f0,
0x900c8,
0x900e8,
0x900d8,
0x900f8,
0x900c4,
0x900e4,
0x900d4,
0x900f4,
0x900cc,
0x900ec,
0x900dc,
0x900fc,
0x900c2,
0x900e2,
0x900d2,
0x900f2,
0x900ca,
0x900ea,
0x900da,
0x900fa,
0x900c6,
0x900e6,
0x900d6,
0x900f6,
0x900ce,
0x900ee,
0x900de,
0x900fe,
0x900c1,
0x900e1,
0x900d1,
0x900f1,
0x900c9,
0x900e9,
0x900d9,
0x900f9,
0x900c5,
0x900e5,
0x900d5,
0x900f5,
0x900cd,
0x900ed,
0x900dd,
0x900fd,
0x900c3,
0x900e3,
0x900d3,
0x7010c,
0x70102,
0x7010a,
0x70106,
0x7010e,
0x70101,
0x70109,
0x70105,
0x7010d,
0x70103,
0x7010b,
0x70107,
0x7010f,
]), 9];
0x80069,
0x80055,
0x80065,
0x8005d,
0x8006d,
0x80053,
0x80063,
0x8005b,
0x8006b,
0x80057,
0x80067,
0x8005f,
0x8006f,
0x80029,
0x80015,
0x80025,
0x8001d,
0x8002d,
0x80013,
0x80023,
0x8001b,
0x8002b,
0x80017,
0x80027,
0x8001f,
0x8002f,
0x900b3,
0x8011d,
0x900ab,
0x9009b,
0x900bb,
0x8011b,
0x900a7,
0x90097,
0x900b7,
0x8011f,
0x900af,
0x9009f,
0x900bf,
0x80009,
0x70112,
0x80005,
0x70116,
0x8000d,
0x70111,
0x80003,
0x70115,
0x8000b,
0x70113,
0x80007,
0x70117,
0x8000f,
0x80089,
0x80075,
0x80085,
0x8007d,
0x8008d,
0x80073,
0x80083,
0x8007b,
0x8008b,
0x80077,
0x80087,
0x8007f,
0x8008f,
0x80049,
0x80035,
0x80045,
0x8003d,
0x8004d,
0x80033,
0x80043,
0x8003b,
0x8004b,
0x80037,
0x80047,
0x8003f,
0x8004f,
0x900f3,
0x900cb,
0x900eb,
0x900db,
0x900fb,
0x900c7,
0x900e7,
0x900d7,
0x900f7,
0x900cf,
0x900ef,
0x900df,
0x900ff
0x50014,
0x50016,
0x50015,
0x50017,
0x5000c,
0x5000e,
0x5000d,
0x5000f,
0x5001c,
0x00000,
0x5001d,
0x00000
function FlateStream(stream) {
var bytes = stream.getBytes();
var bytesPos = 0;
this.dict = stream.dict;
var cmf = bytes[bytesPos++];
var flg = bytes[bytesPos++];
if (cmf == -1 || flg == -1)
error('Invalid header in flate stream: ' + cmf + ', ' + flg);
if ((cmf & 0x0f) != 0x08)
error('Unknown compression method in flate stream: ' + cmf + ', ' + flg);
if ((((cmf << 8) + flg) % 31) != 0)
error('Bad FCHECK in flate stream: ' + cmf + ', ' + flg);
if (flg & 0x20)
error('FDICT bit set in flate stream: ' + cmf + ', ' + flg);
this.bytes = bytes;
this.bytesPos = bytesPos;
this.codeSize = 0;
this.codeBuf = 0;
DecodeStream.call(this);
}
FlateStream.prototype = Object.create(DecodeStream.prototype);
FlateStream.prototype.getBits = function FlateStream_getBits(bits) {
var codeSize = this.codeSize;
var codeBuf = this.codeBuf;
var bytes = this.bytes;
var bytesPos = this.bytesPos;
var b;
while (codeSize < bits) {
if (typeof (b = bytes[bytesPos++]) == 'undefined')
error('Bad encoding in flate stream');
codeBuf |= b << codeSize;
codeSize += 8;
}
b = codeBuf & ((1 << bits) - 1);
this.codeBuf = codeBuf >> bits;
this.codeSize = codeSize -= bits;
this.bytesPos = bytesPos;
return b;
};
FlateStream.prototype.getCode = function FlateStream_getCode(table) {
var codes = table[0];
var maxLen = table[1];
var codeSize = this.codeSize;
var codeBuf = this.codeBuf;
var bytes = this.bytes;
var bytesPos = this.bytesPos;
while (codeSize < maxLen) {
var b;
if (typeof (b = bytes[bytesPos++]) == 'undefined')
error('Bad encoding in flate stream');
codeBuf |= (b << codeSize);
codeSize += 8;
}
var code = codes[codeBuf & ((1 << maxLen) - 1)];
var codeLen = code >> 16;
var codeVal = code & 0xffff;
if (codeSize == 0 || codeSize < codeLen || codeLen == 0)
error('Bad encoding in flate stream');
this.codeBuf = (codeBuf >> codeLen);
this.codeSize = (codeSize - codeLen);
this.bytesPos = bytesPos;
return codeVal;
};
FlateStream.prototype.generateHuffmanTable =
function flateStreamGenerateHuffmanTable(lengths) {
var n = lengths.length;
// find max code length
var maxLen = 0;
for (var i = 0; i < n; ++i) {
if (lengths[i] > maxLen)
maxLen = lengths[i];
}
// build the table
var size = 1 << maxLen;
var codes = new Uint32Array(size);
for (var len = 1, code = 0, skip = 2;
len <= maxLen;
++len, code <<= 1, skip <<= 1) {
for (var val = 0; val < n; ++val) {
if (lengths[val] == len) {
// bit-reverse the code
var code2 = 0;
var t = code;
for (var i = 0; i < len; ++i) {
code2 = (code2 << 1) | (t & 1);
t >>= 1;
}
// fill the table entries
for (var i = code2; i < size; i += skip)
codes[i] = (len << 16) | val;
++code;
}
}
}
return [codes, maxLen];
};
FlateStream.prototype.readBlock = function FlateStream_readBlock() {
// read block header
var hdr = this.getBits(3);
if (hdr & 1)
this.eof = true;
hdr >>= 1;
if (hdr == 0) { // uncompressed block
var bytes = this.bytes;
var bytesPos = this.bytesPos;
var b;
if (typeof (b = bytes[bytesPos++]) == 'undefined')
error('Bad block header in flate stream');
var blockLen = b;
if (typeof (b = bytes[bytesPos++]) == 'undefined')
error('Bad block header in flate stream');
blockLen |= (b << 8);
if (typeof (b = bytes[bytesPos++]) == 'undefined')
error('Bad block header in flate stream');
var check = b;
if (typeof (b = bytes[bytesPos++]) == 'undefined')
error('Bad block header in flate stream');
check |= (b << 8);
if (check != (~blockLen & 0xffff))
error('Bad uncompressed block length in flate stream');
this.codeBuf = 0;
this.codeSize = 0;
var bufferLength = this.bufferLength;
var buffer = this.ensureBuffer(bufferLength + blockLen);
var end = bufferLength + blockLen;
this.bufferLength = end;
for (var n = bufferLength; n < end; ++n) {
if (typeof (b = bytes[bytesPos++]) == 'undefined') {
this.eof = true;
break;
}
buffer[n] = b;
}
this.bytesPos = bytesPos;
return;
}
var litCodeTable;
var distCodeTable;
if (hdr == 1) { // compressed block, fixed codes
litCodeTable = fixedLitCodeTab;
distCodeTable = fixedDistCodeTab;
} else if (hdr == 2) { // compressed block, dynamic codes
var numLitCodes = this.getBits(5) + 257;
var numDistCodes = this.getBits(5) + 1;
var numCodeLenCodes = this.getBits(4) + 4;
// build the code lengths code table
var codeLenCodeLengths = new Uint8Array(codeLenCodeMap.length);
for (var i = 0; i < numCodeLenCodes; ++i)
codeLenCodeLengths[codeLenCodeMap[i]] = this.getBits(3);
var codeLenCodeTab = this.generateHuffmanTable(codeLenCodeLengths);
// build the literal and distance code tables
var len = 0;
var i = 0;
var codes = numLitCodes + numDistCodes;
var codeLengths = new Uint8Array(codes);
while (i < codes) {
var code = this.getCode(codeLenCodeTab);
if (code == 16) {
var bitsLength = 2, bitsOffset = 3, what = len;
} else if (code == 17) {
var bitsLength = 3, bitsOffset = 3, what = (len = 0);
} else if (code == 18) {
var bitsLength = 7, bitsOffset = 11, what = (len = 0);
} else {
codeLengths[i++] = len = code;
continue;
}
var repeatLength = this.getBits(bitsLength) + bitsOffset;
while (repeatLength-- > 0)
codeLengths[i++] = what;
}
litCodeTable =
this.generateHuffmanTable(codeLengths.subarray(0, numLitCodes));
distCodeTable =
this.generateHuffmanTable(codeLengths.subarray(numLitCodes, codes));
} else {
error('Unknown block type in flate stream');
}
var buffer = this.buffer;
var limit = buffer ? buffer.length : 0;
var pos = this.bufferLength;
while (true) {
var code1 = this.getCode(litCodeTable);
if (code1 < 256) {
if (pos + 1 >= limit) {
buffer = this.ensureBuffer(pos + 1);
limit = buffer.length;
}
buffer[pos++] = code1;
continue;
}
if (code1 == 256) {
this.bufferLength = pos;
return;
}
code1 -= 257;
code1 = lengthDecode[code1];
var code2 = code1 >> 16;
if (code2 > 0)
code2 = this.getBits(code2);
var len = (code1 & 0xffff) + code2;
code1 = this.getCode(distCodeTable);
code1 = distDecode[code1];
code2 = code1 >> 16;
if (code2 > 0)
code2 = this.getBits(code2);
var dist = (code1 & 0xffff) + code2;
if (pos + len >= limit) {
buffer = this.ensureBuffer(pos + len);
limit = buffer.length;
}
for (var k = 0; k < len; ++k, ++pos)
buffer[pos] = buffer[pos - dist];
}
};
return FlateStream;
})();
var PredictorStream = (function PredictorStreamClosure() {
function PredictorStream(stream, params) {
var predictor = this.predictor = params.get('Predictor') || 1;
if (predictor <= 1)
return stream; // no prediction
if (predictor !== 2 && (predictor < 10 || predictor > 15))
error('Unsupported predictor: ' + predictor);
if (predictor === 2)
this.readBlock = this.readBlockTiff;
else
this.readBlock = this.readBlockPng;
this.stream = stream;
this.dict = stream.dict;
var colors = this.colors = params.get('Colors') || 1;
var bits = this.bits = params.get('BitsPerComponent') || 8;
var columns = this.columns = params.get('Columns') || 1;
this.pixBytes = (colors * bits + 7) >> 3;
this.rowBytes = (columns * colors * bits + 7) >> 3;
DecodeStream.call(this);
return this;
}
PredictorStream.prototype = Object.create(DecodeStream.prototype);
PredictorStream.prototype.readBlockTiff =
function predictorStreamReadBlockTiff() {
PredictorStream.prototype.readBlockPng =
function predictorStreamReadBlockPng() {
var rowBytes = this.rowBytes;
var pixBytes = this.pixBytes;
var predictor = this.stream.getByte();
var rawBytes = this.stream.getBytes(rowBytes);
var bufferLength = this.bufferLength;
var buffer = this.ensureBuffer(bufferLength + rowBytes);
var prevRow = buffer.subarray(bufferLength - rowBytes, bufferLength);
if (prevRow.length == 0)
prevRow = new Uint8Array(rowBytes);
var j = bufferLength;
switch (predictor) {
case 0:
for (var i = 0; i < rowBytes; ++i)
buffer[j++] = rawBytes[i];
break;
case 1:
for (var i = 0; i < pixBytes; ++i)
buffer[j++] = rawBytes[i];
for (; i < rowBytes; ++i) {
buffer[j] = (buffer[j - pixBytes] + rawBytes[i]) & 0xFF;
j++;
}
break;
case 2:
for (var i = 0; i < rowBytes; ++i)
buffer[j++] = (prevRow[i] + rawBytes[i]) & 0xFF;
break;
case 3:
for (var i = 0; i < pixBytes; ++i)
buffer[j++] = (prevRow[i] >> 1) + rawBytes[i];
for (; i < rowBytes; ++i) {
buffer[j] = (((prevRow[i] + buffer[j - pixBytes]) >> 1) +
rawBytes[i]) & 0xFF;
j++;
}
break;
case 4:
// we need to save the up left pixels values. the simplest way
// is to create a new buffer
for (var i = 0; i < pixBytes; ++i) {
var up = prevRow[i];
var c = rawBytes[i];
buffer[j++] = up + c;
}
for (; i < rowBytes; ++i) {
var up = prevRow[i];
var upLeft = prevRow[i - pixBytes];
var left = buffer[j - pixBytes];
var p = left + up - upLeft;
var pa = p - left;
if (pa < 0)
pa =
var pb
if (pb
pb =
var pc
if (pc
pc =
-pa;
= p - up;
< 0)
-pb;
= p - upLeft;
< 0)
-pc;
var c = rawBytes[i];
if (pa <= pb && pa <= pc)
buffer[j++] = left + c;
else if (pb <= pc)
buffer[j++] = up + c;
else
buffer[j++] = upLeft + c;
}
break;
default:
error('Unsupported predictor: ' + predictor);
}
this.bufferLength += rowBytes;
};
return PredictorStream;
})();
/**
* Depending on the type of JPEG a JpegStream is handled in different ways. For
* JPEG's that are supported natively such as DeviceGray and DeviceRGB the image
* data is stored and then loaded by the browser. For unsupported JPEG's we use
* a library to decode these images and the stream behaves like all the other
* DecodeStreams.
*/
var JpegStream = (function JpegStreamClosure() {
function isAdobeImage(bytes) {
var maxBytesScanned = Math.max(bytes.length - 16, 1024);
// Looking for APP14, 'Adobe'
for (var i = 0; i < maxBytesScanned; ++i) {
if (bytes[i] == 0xFF && bytes[i + 1] == 0xEE &&
bytes[i + 2] == 0x00 && bytes[i + 3] == 0x0E &&
bytes[i + 4] == 0x41 && bytes[i + 5] == 0x64 &&
bytes[i + 6] == 0x6F && bytes[i + 7] == 0x62 &&
bytes[i + 8] == 0x65 && bytes[i + 9] == 0x00)
return true;
// scanning until frame tag
if (bytes[i] == 0xFF && bytes[i + 1] == 0xC0)
break;
}
return false;
}
function fixAdobeImage(bytes) {
// Inserting 'EMBED' marker after JPEG signature
var embedMarker = new Uint8Array([0xFF, 0xEC, 0, 8, 0x45, 0x4D, 0x42, 0x45,
0x44, 0]);
var newBytes = new Uint8Array(bytes.length + embedMarker.length);
newBytes.set(bytes, embedMarker.length);
// copy JPEG header
newBytes[0] = bytes[0];
newBytes[1] = bytes[1];
newBytes.set(embedMarker, 2);
return newBytes;
}
function JpegStream(bytes, dict, xref) {
// TODO: per poppler, some images may have 'junk' before that
// need to be removed
this.dict = dict;
this.isAdobeImage = false;
this.colorTransform = dict.get('ColorTransform') || -1;
if (isAdobeImage(bytes)) {
this.isAdobeImage = true;
bytes = fixAdobeImage(bytes);
}
this.bytes = bytes;
DecodeStream.call(this);
}
JpegStream.prototype = Object.create(DecodeStream.prototype);
JpegStream.prototype.ensureBuffer = function JpegStream_ensureBuffer(req) {
if (this.bufferLength)
return;
try {
var jpegImage = new JpegImage();
if (this.colorTransform != -1)
jpegImage.colorTransform = this.colorTransform;
jpegImage.parse(this.bytes);
var width = jpegImage.width;
var height = jpegImage.height;
var data = jpegImage.getData(width, height);
this.buffer = data;
this.bufferLength = data.length;
} catch (e) {
error('JPEG error: ' + e);
}
};
JpegStream.prototype.getIR = function JpegStream_getIR() {
return bytesToString(this.bytes);
};
JpegStream.prototype.getChar = function JpegStream_getChar() {
error('internal error: getChar is not valid on JpegStream');
};
/**
* Checks if the image can be decoded and displayed by the browser without any
* further processing such as color space conversions.
*/
JpegStream.prototype.isNativelySupported =
function JpegStream_isNativelySupported(xref, res) {
var cs = ColorSpace.parse(this.dict.get('ColorSpace', 'CS'), xref, res);
// when bug 674619 lands, let's check if browser can do
// normal cmyk and then we won't need to decode in JS
if (cs.name === 'DeviceGray' || cs.name === 'DeviceRGB')
return true;
if (cs.name === 'DeviceCMYK' && !this.isAdobeImage &&
this.colorTransform < 1)
return true;
return false;
};
/**
* Checks if the image can be decoded by the browser.
*/
JpegStream.prototype.isNativelyDecodable =
function JpegStream_isNativelyDecodable(xref, res) {
var cs = ColorSpace.parse(this.dict.get('ColorSpace', 'CS'), xref, res);
var numComps = cs.numComps;
if (numComps == 1 || numComps == 3)
return true;
return false;
};
return JpegStream;
})();
/**
* For JPEG 2000's we use a library to decode these images and
* the stream behaves like all the other DecodeStreams.
*/
var JpxStream = (function JpxStreamClosure() {
function JpxStream(bytes, dict) {
this.dict = dict;
this.bytes = bytes;
DecodeStream.call(this);
}
JpxStream.prototype = Object.create(DecodeStream.prototype);
JpxStream.prototype.ensureBuffer = function JpxStream_ensureBuffer(req) {
if (this.bufferLength)
return;
var jpxImage = new JpxImage();
jpxImage.parse(this.bytes);
var width = jpxImage.width;
var height = jpxImage.height;
var componentsCount = jpxImage.componentsCount;
if (componentsCount != 1 && componentsCount != 3 && componentsCount != 4)
error('JPX with ' + componentsCount + ' components is not supported');
var data = new Uint8Array(width * height * componentsCount);
for (var k = 0, kk = jpxImage.tiles.length; k < kk; k++) {
var tileCompoments = jpxImage.tiles[k];
var tileWidth = tileCompoments[0].width;
var tileHeight = tileCompoments[0].height;
var tileLeft = tileCompoments[0].left;
var tileTop = tileCompoments[0].top;
var dataPosition, sourcePosition, data0, data1, data2, data3, rowFeed;
switch (componentsCount) {
case 1:
data0 = tileCompoments[0].items;
/**
* For JBIG2's we use a library to decode these images and
* the stream behaves like all the other DecodeStreams.
*/
var Jbig2Stream = (function Jbig2StreamClosure() {
function Jbig2Stream(bytes, dict) {
this.dict = dict;
this.bytes = bytes;
DecodeStream.call(this);
}
Jbig2Stream.prototype = Object.create(DecodeStream.prototype);
Jbig2Stream.prototype.ensureBuffer = function Jbig2Stream_ensureBuffer(req) {
if (this.bufferLength)
return;
var jbig2Image = new Jbig2Image();
var chunks = [], decodeParams = this.dict.get('DecodeParms');
if (decodeParams && decodeParams.has('JBIG2Globals')) {
var globalsStream = decodeParams.get('JBIG2Globals');
var globals = globalsStream.getBytes();
chunks.push({data: globals, start: 0, end: globals.length});
}
chunks.push({data: this.bytes, start: 0, end: this.bytes.length});
var data = jbig2Image.parseChunks(chunks);
var dataLength = data.length;
// JBIG2 had black as 1 and white as 0, inverting the colors
for (var i = 0; i < dataLength; i++)
data[i] ^= 0xFF;
this.buffer = data;
this.bufferLength = dataLength;
};
Jbig2Stream.prototype.getChar = function Jbig2Stream_getChar() {
error('internal error: getChar is not valid on Jbig2Stream');
};
return Jbig2Stream;
})();
var DecryptStream = (function DecryptStreamClosure() {
function DecryptStream(str, decrypt) {
this.str = str;
this.dict = str.dict;
this.decrypt = decrypt;
DecodeStream.call(this);
}
var chunkSize = 512;
DecryptStream.prototype = Object.create(DecodeStream.prototype);
DecryptStream.prototype.readBlock = function DecryptStream_readBlock() {
var chunk = this.str.getBytes(chunkSize);
if (!chunk || chunk.length == 0) {
this.eof = true;
return;
}
var decrypt = this.decrypt;
chunk = decrypt(chunk);
var bufferLength = this.bufferLength;
var i, n = chunk.length;
var buffer = this.ensureBuffer(bufferLength + n);
for (i = 0; i < n; i++)
buffer[bufferLength++] = chunk[i];
this.bufferLength = bufferLength;
};
return DecryptStream;
})();
var Ascii85Stream = (function Ascii85StreamClosure() {
function Ascii85Stream(str) {
this.str = str;
this.dict = str.dict;
this.input = new Uint8Array(5);
DecodeStream.call(this);
}
Ascii85Stream.prototype = Object.create(DecodeStream.prototype);
Ascii85Stream.prototype.readBlock = function Ascii85Stream_readBlock() {
var tildaCode = '~'.charCodeAt(0);
var zCode = 'z'.charCodeAt(0);
var str = this.str;
var c = str.getByte();
while (Lexer.isSpace(String.fromCharCode(c)))
c = str.getByte();
if (!c || c === tildaCode) {
this.eof = true;
return;
}
var bufferLength = this.bufferLength, buffer;
// special code for z
if (c == zCode) {
buffer = this.ensureBuffer(bufferLength + 4);
for (var i = 0; i < 4; ++i)
buffer[bufferLength + i] = 0;
this.bufferLength += 4;
} else {
var input = this.input;
input[0] = c;
for (var i = 1; i < 5; ++i) {
c = str.getByte();
while (Lexer.isSpace(String.fromCharCode(c)))
c = str.getByte();
input[i] = c;
if (!c || c == tildaCode)
break;
}
buffer = this.ensureBuffer(bufferLength + i - 1);
this.bufferLength += i - 1;
// partial ending;
if (i < 5) {
for (; i < 5; ++i)
input[i] = 0x21 + 84;
this.eof = true;
}
var t = 0;
for (var i = 0; i < 5; ++i)
t = t * 85 + (input[i] - 0x21);
for (var i = 3; i >= 0; --i) {
buffer[bufferLength + i] = t & 0xFF;
t >>= 8;
}
}
};
return Ascii85Stream;
})();
var AsciiHexStream = (function AsciiHexStreamClosure() {
function AsciiHexStream(str) {
this.str = str;
this.dict = str.dict;
DecodeStream.call(this);
}
var hexvalueMap = {
9: -1, // \t
32: -1, // space
48: 0,
49: 1,
50: 2,
51: 3,
52: 4,
53: 5,
54: 6,
55: 7,
56: 8,
57: 9,
65: 10,
66: 11,
67: 12,
68: 13,
69: 14,
70: 15,
97: 10,
98: 11,
99: 12,
100: 13,
101: 14,
102: 15
};
AsciiHexStream.prototype = Object.create(DecodeStream.prototype);
AsciiHexStream.prototype.readBlock = function AsciiHexStream_readBlock() {
var gtCode = '>'.charCodeAt(0), bytes = this.str.getBytes(), c, n,
decodeLength, buffer, bufferLength, i, length;
decodeLength = (bytes.length + 1) >> 1;
buffer = this.ensureBuffer(this.bufferLength + decodeLength);
bufferLength = this.bufferLength;
for (i = 0, length = bytes.length; i < length; i++) {
c = hexvalueMap[bytes[i]];
while (c == -1 && (i + 1) < length) {
c = hexvalueMap[bytes[++i]];
}
if ((i + 1) < length && (bytes[i + 1] !== gtCode)) {
n = hexvalueMap[bytes[++i]];
buffer[bufferLength++] = c * 16 + n;
} else {
// EOD marker at an odd number, behave as if a 0 followed the last
// digit.
if (bytes[i] !== gtCode) {
buffer[bufferLength++] = c * 16;
}
}
}
this.bufferLength = bufferLength;
this.eof = true;
};
return AsciiHexStream;
})();
var RunLengthStream = (function RunLengthStreamClosure() {
function RunLengthStream(str) {
this.str = str;
this.dict = str.dict;
DecodeStream.call(this);
}
RunLengthStream.prototype = Object.create(DecodeStream.prototype);
RunLengthStream.prototype.readBlock = function RunLengthStream_readBlock() {
// The repeatHeader has following format. The first byte defines type of run
// and amount of bytes to repeat/copy: n = 0 through 127 - copy next n bytes
// (in addition to the second byte from the header), n = 129 through 255 // duplicate the second byte from the header (257 - n) times, n = 128 - end.
var repeatHeader = this.str.getBytes(2);
if (!repeatHeader || repeatHeader.length < 2 || repeatHeader[0] == 128) {
this.eof = true;
return;
}
var bufferLength = this.bufferLength;
var n = repeatHeader[0];
if (n < 128) {
// copy n bytes
var buffer = this.ensureBuffer(bufferLength + n + 1);
buffer[bufferLength++] = repeatHeader[1];
if (n > 0) {
var source = this.str.getBytes(n);
buffer.set(source, bufferLength);
bufferLength += n;
}
} else {
n = 257 - n;
var b = repeatHeader[1];
var buffer = this.ensureBuffer(bufferLength + n + 1);
for (var i = 0; i < n; i++)
buffer[bufferLength++] = b;
}
this.bufferLength = bufferLength;
};
return RunLengthStream;
})();
var CCITTFaxStream = (function CCITTFaxStreamClosure() {
var
var
var
var
var
var
var
var
var
var
ccittEOL = -2;
twoDimPass = 0;
twoDimHoriz = 1;
twoDimVert0 = 2;
twoDimVertR1 = 3;
twoDimVertL1 = 4;
twoDimVertR2 = 5;
twoDimVertL2 = 6;
twoDimVertR3 = 7;
twoDimVertL3 = 8;
var twoDimTable = [
[-1, -1], [-1, -1],
[7, twoDimVertL3],
[7, twoDimVertR3],
[6, twoDimVertL2], [6, twoDimVertL2],
[6, twoDimVertR2], [6, twoDimVertR2],
[4, twoDimPass], [4, twoDimPass],
[4, twoDimPass], [4, twoDimPass],
[4, twoDimPass], [4, twoDimPass],
[4, twoDimPass], [4, twoDimPass],
[3, twoDimHoriz], [3, twoDimHoriz],
[3, twoDimHoriz], [3, twoDimHoriz],
[3, twoDimHoriz], [3, twoDimHoriz],
[3, twoDimHoriz], [3, twoDimHoriz],
[3, twoDimHoriz], [3, twoDimHoriz],
[3, twoDimHoriz], [3, twoDimHoriz],
[3, twoDimHoriz], [3, twoDimHoriz],
[3, twoDimHoriz], [3, twoDimHoriz],
[3, twoDimVertL1], [3, twoDimVertL1],
[3, twoDimVertL1], [3, twoDimVertL1],
[3, twoDimVertL1], [3, twoDimVertL1],
[3, twoDimVertL1], [3, twoDimVertL1],
[3, twoDimVertL1], [3, twoDimVertL1],
[3, twoDimVertL1], [3, twoDimVertL1],
[3, twoDimVertL1], [3, twoDimVertL1],
[3, twoDimVertL1], [3, twoDimVertL1],
//
//
//
//
//
//
000000x
0000010
0000011
000010x
000011x
0001xxx
// 001xxxx
// 010xxxx
[3,
[3,
[3,
[3,
[3,
[3,
[3,
[3,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
[1,
];
var whiteTable1 = [
[-1, -1],
// 00000
[12, ccittEOL],
// 00001
[-1, -1], [-1, -1],
// 0001x
[-1, -1], [-1, -1], [-1, -1], [-1, -1], // 001xx
[-1, -1], [-1, -1], [-1, -1], [-1, -1], // 010xx
[-1, -1], [-1, -1], [-1, -1], [-1, -1], // 011xx
[11, 1792], [11, 1792],
// 1000x
[12, 1984],
// 10010
[12, 2048],
// 10011
[12, 2112],
// 10100
[12, 2176],
// 10101
[12, 2240],
// 10110
[12, 2304],
// 10111
[11, 1856], [11, 1856],
// 1100x
[11, 1920], [11, 1920],
// 1101x
[12, 2368],
// 11100
[12, 2432],
// 11101
[12, 2496],
[12, 2560]
// 11110
// 11111
];
var whiteTable2 = [
[-1, -1], [-1, -1], [-1, -1], [-1, -1],
[8, 29], [8, 29],
[8, 30], [8, 30],
[8, 45], [8, 45],
[8, 46], [8, 46],
[7, 22], [7, 22], [7, 22], [7, 22],
[7, 23], [7, 23], [7, 23], [7, 23],
[8, 47], [8, 47],
[8, 48], [8, 48],
[6, 13], [6, 13], [6, 13], [6, 13],
[6, 13], [6, 13], [6, 13], [6, 13],
[7, 20], [7, 20], [7, 20], [7, 20],
[8, 33], [8, 33],
[8, 34], [8, 34],
[8, 35], [8, 35],
[8, 36], [8, 36],
[8, 37], [8, 37],
[8, 38], [8, 38],
[7, 19], [7, 19], [7, 19], [7, 19],
[8, 31], [8, 31],
[8, 32], [8, 32],
[6, 1], [6, 1], [6, 1], [6, 1],
[6, 1], [6, 1], [6, 1], [6, 1],
[6, 12], [6, 12], [6, 12], [6, 12],
[6, 12], [6, 12], [6, 12], [6, 12],
[8, 53], [8, 53],
[8, 54], [8, 54],
[7, 26], [7, 26], [7, 26], [7, 26],
[8, 39], [8, 39],
[8, 40], [8, 40],
[8, 41], [8, 41],
[8, 42], [8, 42],
[8, 43], [8, 43],
[8, 44], [8, 44],
[7, 21], [7, 21], [7, 21], [7, 21],
[7, 28], [7, 28], [7, 28], [7, 28],
[8, 61], [8, 61],
[8, 62], [8, 62],
[8, 63], [8, 63],
[8, 0], [8, 0],
[8, 320], [8, 320],
[8, 384], [8, 384],
[5, 10], [5, 10], [5, 10], [5, 10],
[5, 10], [5, 10], [5, 10], [5, 10],
[5, 10], [5, 10], [5, 10], [5, 10],
[5, 10], [5, 10], [5, 10], [5, 10],
[5, 11], [5, 11], [5, 11], [5, 11],
[5, 11], [5, 11], [5, 11], [5, 11],
[5, 11], [5, 11], [5, 11], [5, 11],
[5, 11], [5, 11], [5, 11], [5, 11],
[7, 27], [7, 27], [7, 27], [7, 27],
[8, 59], [8, 59],
[8, 60], [8, 60],
[9, 1472],
[9, 1536],
//
//
//
//
//
//
//
//
//
//
0000000xx
00000010x
00000011x
00000100x
00000101x
0000011xx
0000100xx
00001010x
00001011x
000011xxx
//
//
//
//
//
//
//
//
//
//
//
0001000xx
00010010x
00010011x
00010100x
00010101x
00010110x
00010111x
0001100xx
00011010x
00011011x
000111xxx
// 001000xxx
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
00100100x
00100101x
0010011xx
00101000x
00101001x
00101010x
00101011x
00101100x
00101101x
0010111xx
0011000xx
00110010x
00110011x
00110100x
00110101x
00110110x
00110111x
00111xxxx
// 01000xxxx
//
//
//
//
//
0100100xx
01001010x
01001011x
010011000
010011001
[9,
[9,
[7,
[7,
[8,
[8,
[8,
[8,
[7,
[8,
[8,
[8,
[8,
[6,
[6,
[6,
[6,
[8,
[8,
[9,
[9,
[8,
[8,
[9,
[9,
[9,
[9,
[9,
[9,
[9,
[9,
[9,
[9,
[7,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[5,
[5,
[5,
[5,
[5,
[5,
[5,
[5,
[5,
[5,
1600],
1728],
18], [7, 18], [7, 18], [7, 18],
24], [7, 24], [7, 24], [7, 24],
49], [8, 49],
50], [8, 50],
51], [8, 51],
52], [8, 52],
25], [7, 25], [7, 25], [7, 25],
55], [8, 55],
56], [8, 56],
57], [8, 57],
58], [8, 58],
192], [6, 192], [6, 192], [6, 192],
192], [6, 192], [6, 192], [6, 192],
1664], [6, 1664], [6, 1664], [6, 1664],
1664], [6, 1664], [6, 1664], [6, 1664],
448], [8, 448],
512], [8, 512],
704],
768],
640], [8, 640],
576], [8, 576],
832],
896],
960],
1024],
1088],
1152],
1216],
1280],
1344],
1408],
256], [7, 256], [7, 256], [7, 256],
2], [4, 2], [4, 2], [4, 2],
2], [4, 2], [4, 2], [4, 2],
2], [4, 2], [4, 2], [4, 2],
2], [4, 2], [4, 2], [4, 2],
2], [4, 2], [4, 2], [4, 2],
2], [4, 2], [4, 2], [4, 2],
2], [4, 2], [4, 2], [4, 2],
2], [4, 2], [4, 2], [4, 2],
3], [4, 3], [4, 3], [4, 3],
3], [4, 3], [4, 3], [4, 3],
3], [4, 3], [4, 3], [4, 3],
3], [4, 3], [4, 3], [4, 3],
3], [4, 3], [4, 3], [4, 3],
3], [4, 3], [4, 3], [4, 3],
3], [4, 3], [4, 3], [4, 3],
3], [4, 3], [4, 3], [4, 3],
128], [5, 128], [5, 128], [5, 128],
128], [5, 128], [5, 128], [5, 128],
128], [5, 128], [5, 128], [5, 128],
128], [5, 128], [5, 128], [5, 128],
8], [5, 8], [5, 8], [5, 8],
8], [5, 8], [5, 8], [5, 8],
8], [5, 8], [5, 8], [5, 8],
8], [5, 8], [5, 8], [5, 8],
9], [5, 9], [5, 9], [5, 9],
9], [5, 9], [5, 9], [5, 9],
//
//
//
//
//
//
//
//
//
//
//
//
//
//
010011010
010011011
0100111xx
0101000xx
01010010x
01010011x
01010100x
01010101x
0101011xx
01011000x
01011001x
01011010x
01011011x
010111xxx
// 011000xxx
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
01100100x
01100101x
011001100
011001101
01100111x
01101000x
011010010
011010011
011010100
011010101
011010110
011010111
011011000
011011001
011011010
011011011
0110111xx
0111xxxxx
// 1000xxxxx
// 10010xxxx
// 10011xxxx
// 10100xxxx
[5,
[5,
[6,
[6,
[6,
[6,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[6,
[6,
[6,
[6,
[5,
[5,
[5,
[5,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
[4,
// 101010xxx
// 101011xxx
// 1011xxxxx
// 1100xxxxx
// 110100xxx
// 110101xxx
// 11011xxxx
// 1110xxxxx
// 1111xxxxx
];
var blackTable1 = [
[-1, -1], [-1, -1],
//
[12, ccittEOL], [12, ccittEOL],
//
[-1, -1], [-1, -1], [-1, -1], [-1, -1],
//
[-1, -1], [-1, -1], [-1, -1], [-1, -1],
//
[-1, -1], [-1, -1], [-1, -1], [-1, -1],
//
[-1, -1], [-1, -1], [-1, -1], [-1, -1],
//
[-1, -1], [-1, -1], [-1, -1], [-1, -1],
//
[-1, -1], [-1, -1], [-1, -1], [-1, -1],
//
[-1, -1], [-1, -1], [-1, -1], [-1, -1],
//
[11, 1792], [11, 1792], [11, 1792], [11, 1792], //
[12, 1984], [12, 1984],
//
000000000000x
000000000001x
00000000001xx
00000000010xx
00000000011xx
00000000100xx
00000000101xx
00000000110xx
00000000111xx
00000001000xx
000000010010x
[12,
[12,
[12,
[12,
[12,
[11,
[11,
[12,
[12,
[12,
[12,
[10,
[10,
[12,
[13,
[13,
[13,
[13,
[12,
[12,
[13,
[13,
[13,
[13,
[12,
[12,
[13,
[13,
[11,
[11,
[13,
[13,
[12,
[12,
[12,
[13,
[13,
[12,
[12,
[13,
[13,
[13,
[13,
[13,
[13,
[10,
[10,
];
var blackTable2 = [
[8, 13], [8, 13], [8,
[8, 13], [8, 13], [8,
[8, 13], [8, 13], [8,
[8, 13], [8, 13], [8,
[11, 23], [11, 23],
[12, 50],
[12, 51],
[12, 44],
[12, 45],
[12, 46],
13],
13],
13],
13],
[8,
[8,
[8,
[8,
13],
13],
13],
13],
// 00000100xxxx
//
//
//
//
//
//
00000101000x
000001010010
000001010011
000001010100
000001010101
000001010110
[12, 47],
[12, 57],
[12, 58],
[12, 61],
[12, 256],
[10, 16], [10, 16], [10, 16], [10, 16],
[10, 17], [10, 17], [10, 17], [10, 17],
[12, 48],
[12, 49],
[12, 62],
[12, 63],
[12, 30],
[12, 31],
[12, 32],
[12, 33],
[12, 40],
[12, 41],
[11, 22], [11, 22],
[8, 14], [8, 14], [8, 14], [8, 14],
[8, 14], [8, 14], [8, 14], [8, 14],
[8, 14], [8, 14], [8, 14], [8, 14],
[8, 14], [8, 14], [8, 14], [8, 14],
[7, 10], [7, 10], [7, 10], [7, 10],
[7, 10], [7, 10], [7, 10], [7, 10],
[7, 10], [7, 10], [7, 10], [7, 10],
[7, 10], [7, 10], [7, 10], [7, 10],
[7, 10], [7, 10], [7, 10], [7, 10],
[7, 10], [7, 10], [7, 10], [7, 10],
[7, 10], [7, 10], [7, 10], [7, 10],
[7, 10], [7, 10], [7, 10], [7, 10],
[7, 11], [7, 11], [7, 11], [7, 11],
[7, 11], [7, 11], [7, 11], [7, 11],
[7, 11], [7, 11], [7, 11], [7, 11],
[7, 11], [7, 11], [7, 11], [7, 11],
[7, 11], [7, 11], [7, 11], [7, 11],
[7, 11], [7, 11], [7, 11], [7, 11],
[7, 11], [7, 11], [7, 11], [7, 11],
[7, 11], [7, 11], [7, 11], [7, 11],
[9, 15], [9, 15], [9, 15], [9, 15],
[9, 15], [9, 15], [9, 15], [9, 15],
[12, 128],
[12, 192],
[12, 26],
[12, 27],
[12, 28],
[12, 29],
[11, 19], [11, 19],
[11, 20], [11, 20],
[12, 34],
[12, 35],
[12, 36],
[12, 37],
[12, 38],
[12, 39],
[11, 21], [11, 21],
[12, 42],
[12, 43],
[10, 0], [10, 0], [10, 0], [10, 0],
[7, 12], [7, 12], [7, 12], [7, 12],
[7, 12], [7, 12], [7, 12], [7, 12],
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
000001010111
000001011000
000001011001
000001011010
000001011011
0000010111xx
0000011000xx
000001100100
000001100101
000001100110
000001100111
000001101000
000001101001
000001101010
000001101011
000001101100
000001101101
00000110111x
00000111xxxx
// 0000100xxxxx
// 0000101xxxxx
// 000011000xxx
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
000011001000
000011001001
000011001010
000011001011
000011001100
000011001101
00001100111x
00001101000x
000011010010
000011010011
000011010100
000011010101
000011010110
000011010111
00001101100x
000011011010
000011011011
0000110111xx
0000111xxxxx
[7,
[7,
[7,
[7,
[7,
[7,
12],
12],
12],
12],
12],
12],
[7,
[7,
[7,
[7,
[7,
[7,
12],
12],
12],
12],
12],
12],
[7,
[7,
[7,
[7,
[7,
[7,
12],
12],
12],
12],
12],
12],
[7,
[7,
[7,
[7,
[7,
[7,
12],
12],
12],
12],
12],
12]
];
var blackTable3 = [
[-1, -1], [-1, -1],
[6, 9],
[6, 8],
[5, 7], [5, 7],
[4, 6], [4, 6], [4,
[4, 5], [4, 5], [4,
[3, 1], [3, 1], [3,
[3, 1], [3, 1], [3,
[3, 4], [3, 4], [3,
[3, 4], [3, 4], [3,
[2, 3], [2, 3], [2,
[2, 3], [2, 3], [2,
[2, 3], [2, 3], [2,
[2, 3], [2, 3], [2,
[2, 2], [2, 2], [2,
[2, 2], [2, 2], [2,
[2, 2], [2, 2], [2,
[2, 2], [2, 2], [2,
];
0000xx
000100
000101
00011x
0010xx
0011xx
010xxx
011xxx
10xxxx
11xxxx
do {
code1
} while
do {
code2
} while
+= (code3 = this.getWhiteCode());
(code3 >= 64);
+= (code3 = this.getBlackCode());
(code3 >= 64);
}
this.addPixels(codingLine[this.codingPos] +
code1, blackPixels);
if (codingLine[this.codingPos] < columns) {
this.addPixels(codingLine[this.codingPos] + code2,
blackPixels ^ 1);
}
while (refLine[refPos] <= codingLine[this.codingPos] &&
refLine[refPos] < columns) {
refPos += 2;
}
break;
case twoDimVertR3:
this.addPixels(refLine[refPos] + 3, blackPixels);
blackPixels ^= 1;
if (codingLine[this.codingPos] < columns) {
++refPos;
while (refLine[refPos] <= codingLine[this.codingPos] &&
refLine[refPos] < columns)
refPos += 2;
}
break;
case twoDimVertR2:
this.addPixels(refLine[refPos] + 2, blackPixels);
blackPixels ^= 1;
if (codingLine[this.codingPos] < columns) {
++refPos;
while (refLine[refPos] <= codingLine[this.codingPos] &&
refLine[refPos] < columns) {
refPos += 2;
}
}
break;
case twoDimVertR1:
this.addPixels(refLine[refPos] + 1, blackPixels);
blackPixels ^= 1;
if (codingLine[this.codingPos] < columns) {
++refPos;
while (refLine[refPos] <= codingLine[this.codingPos] &&
refLine[refPos] < columns)
refPos += 2;
}
break;
case twoDimVert0:
this.addPixels(refLine[refPos], blackPixels);
blackPixels ^= 1;
if (codingLine[this.codingPos] < columns) {
++refPos;
while (refLine[refPos] <= codingLine[this.codingPos] &&
refLine[refPos] < columns)
refPos += 2;
}
break;
case twoDimVertL3:
this.addPixelsNeg(refLine[refPos] - 3, blackPixels);
blackPixels ^= 1;
if (codingLine[this.codingPos] < columns) {
if (refPos > 0)
--refPos;
else
++refPos;
while (refLine[refPos] <= codingLine[this.codingPos] &&
refLine[refPos] < columns)
refPos += 2;
}
break;
case twoDimVertL2:
this.addPixelsNeg(refLine[refPos] - 2, blackPixels);
blackPixels ^= 1;
if (codingLine[this.codingPos] < columns) {
if (refPos > 0)
--refPos;
else
++refPos;
while (refLine[refPos] <= codingLine[this.codingPos] &&
refLine[refPos] < columns)
refPos += 2;
}
break;
case twoDimVertL1:
this.addPixelsNeg(refLine[refPos] - 1, blackPixels);
blackPixels ^= 1;
if (codingLine[this.codingPos] < columns) {
if (refPos > 0)
--refPos;
else
++refPos;
while (refLine[refPos] <= codingLine[this.codingPos] &&
refLine[refPos] < columns)
refPos += 2;
}
break;
case EOF:
this.addPixels(columns, 0);
this.eof = true;
break;
default:
info('bad 2d code');
this.addPixels(columns, 0);
this.err = true;
}
}
} else {
codingLine[0] = 0;
this.codingPos = 0;
blackPixels = 0;
while (codingLine[this.codingPos] < columns) {
code1 = 0;
if (blackPixels) {
do {
code1 += (code3 = this.getBlackCode());
} while (code3 >= 64);
} else {
do {
code1 += (code3 = this.getWhiteCode());
} while (code3 >= 64);
}
this.addPixels(codingLine[this.codingPos] + code1, blackPixels);
blackPixels ^= 1;
}
}
if (this.byteAlign)
this.inputBits &= ~7;
var gotEOL = false;
if (!this.eoblock && this.row == this.rows - 1) {
this.eof = true;
} else {
code1 = this.lookBits(12);
while (code1 == 0) {
this.eatBits(1);
code1 = this.lookBits(12);
}
if (code1 == 1) {
this.eatBits(12);
gotEOL = true;
} else if (code1 == EOF) {
this.eof = true;
}
}
if (!this.eof && this.encoding > 0) {
this.nextLine2D = !this.lookBits(1);
this.eatBits(1);
}
if (this.eoblock && gotEOL) {
code1 = this.lookBits(12);
if (code1 == 1) {
this.eatBits(12);
if (this.encoding > 0) {
this.lookBits(1);
this.eatBits(1);
}
if (this.encoding >= 0) {
for (var i = 0; i < 4; ++i) {
code1 = this.lookBits(12);
if (code1 != 1)
info('bad rtc code: ' + code1);
this.eatBits(12);
if (this.encoding > 0) {
this.lookBits(1);
this.eatBits(1);
}
}
}
this.eof = true;
}
} else if (this.err && this.eoline) {
while (true) {
code1 = this.lookBits(13);
if (code1 == EOF) {
this.eof = true;
return null;
}
if ((code1 >> 1) == 1) {
break;
}
this.eatBits(1);
}
this.eatBits(12);
if (this.encoding > 0) {
this.eatBits(1);
this.nextLine2D = !(code1 & 1);
}
}
if (codingLine[0] > 0)
this.outputBits = codingLine[this.codingPos = 0];
else
this.outputBits = codingLine[this.codingPos = 1];
this.row++;
}
if (this.outputBits >= 8) {
this.buf = (this.codingPos & 1) ? 0 : 0xFF;
this.outputBits -= 8;
if (this.outputBits == 0 && codingLine[this.codingPos] < columns) {
this.codingPos++;
this.outputBits = (codingLine[this.codingPos] codingLine[this.codingPos - 1]);
}
} else {
var bits = 8;
this.buf = 0;
do {
if (this.outputBits > bits) {
this.buf <<= bits;
if (!(this.codingPos & 1)) {
this.buf |= 0xFF >> (8 - bits);
}
this.outputBits -= bits;
bits = 0;
} else {
this.buf <<= this.outputBits;
if (!(this.codingPos & 1)) {
this.buf |= 0xFF >> (8 - this.outputBits);
}
bits -= this.outputBits;
this.outputBits = 0;
if (codingLine[this.codingPos] < columns) {
this.codingPos++;
this.outputBits = (codingLine[this.codingPos] codingLine[this.codingPos - 1]);
} else if (bits > 0) {
this.buf <<= bits;
bits = 0;
}
}
} while (bits);
}
if (this.black) {
this.buf ^= 0xFF;
}
return this.buf;
};
// This functions returns the code found from the table.
// The start and end parameters set the boundaries for searching the table.
// The limit parameter is optional. Function returns an array with three
// values. The first array element indicates whether a valid code is being
// returned. The second array element is the actual code. The third array
// element indicates whether EOF was reached.
CCITTFaxStream.prototype.findTableCode =
function ccittFaxStreamFindTableCode(start, end, table, limit) {
var limitValue = limit || 0;
for (var i = start; i <= end; ++i) {
var code = this.lookBits(i);
if (code == EOF)
return [true, 1, false];
if (i < end)
code <<= end - i;
if (!limitValue || code >= limitValue) {
var p = table[code - limitValue];
if (p[0] == i) {
this.eatBits(i);
return [true, p[1], true];
}
}
}
return [false, 0, false];
};
CCITTFaxStream.prototype.getTwoDimCode =
function ccittFaxStreamGetTwoDimCode() {
var code = 0;
var p;
if (this.eoblock) {
code = this.lookBits(7);
p = twoDimTable[code];
if (p && p[0] > 0) {
this.eatBits(p[0]);
return p[1];
}
} else {
var result = this.findTableCode(1, 7, twoDimTable);
if (result[0] && result[2])
return result[1];
}
info('Bad two dim code');
return EOF;
};
CCITTFaxStream.prototype.getWhiteCode =
function ccittFaxStreamGetWhiteCode() {
var code = 0;
var p;
var n;
if (this.eoblock) {
code = this.lookBits(12);
if (code == EOF)
return 1;
if ((code >> 5) == 0)
p = whiteTable1[code];
else
p = whiteTable2[code >> 3];
if (p[0] > 0) {
this.eatBits(p[0]);
return p[1];
}
} else {
var result = this.findTableCode(1, 9, whiteTable2);
if (result[0])
return result[1];
result = this.findTableCode(11, 12, whiteTable1);
if (result[0])
return result[1];
}
info('bad white code');
this.eatBits(1);
return 1;
};
CCITTFaxStream.prototype.getBlackCode =
function ccittFaxStreamGetBlackCode() {
var code, p;
if (this.eoblock) {
code = this.lookBits(13);
if (code == EOF)
return 1;
if ((code >> 7) == 0)
p = blackTable1[code];
else if ((code >> 9) == 0 && (code >> 7) != 0)
p = blackTable2[(code >> 1) - 64];
else
p = blackTable3[code >> 7];
if (p[0] > 0) {
this.eatBits(p[0]);
return p[1];
}
} else {
var result = this.findTableCode(2, 6, blackTable3);
if (result[0])
return result[1];
result = this.findTableCode(7, 12, blackTable2, 64);
if (result[0])
return result[1];
result = this.findTableCode(10, 13, blackTable1);
if (result[0])
return result[1];
}
earlyChange = lzwState.earlyChange;
nextCode = lzwState.nextCode;
dictionaryValues = lzwState.dictionaryValues;
dictionaryLengths = lzwState.dictionaryLengths;
dictionaryPrevCodes = lzwState.dictionaryPrevCodes;
codeLength = lzwState.codeLength;
prevCode = lzwState.prevCode;
currentSequence = lzwState.currentSequence;
currentSequenceLength = lzwState.currentSequenceLength;
var decodedLength = 0;
var currentBufferLength = this.bufferLength;
var buffer = this.ensureBuffer(this.bufferLength + estimatedDecodedSize);
for (i = 0; i < blockSize; i++) {
var code = this.readBits(codeLength);
var hasPrev = currentSequenceLength > 0;
if (code < 256) {
currentSequence[0] = code;
currentSequenceLength = 1;
} else if (code >= 258) {
if (code < nextCode) {
currentSequenceLength = dictionaryLengths[code];
for (j = currentSequenceLength - 1, q = code; j >= 0; j--) {
currentSequence[j] = dictionaryValues[q];
q = dictionaryPrevCodes[q];
}
} else {
currentSequence[currentSequenceLength++] = currentSequence[0];
}
} else if (code == 256) {
codeLength = 9;
nextCode = 258;
currentSequenceLength = 0;
continue;
} else {
this.eof = true;
delete this.lzwState;
break;
}
if (hasPrev) {
dictionaryPrevCodes[nextCode] = prevCode;
dictionaryLengths[nextCode] = dictionaryLengths[prevCode] + 1;
dictionaryValues[nextCode] = currentSequence[0];
nextCode++;
codeLength = (nextCode + earlyChange) & (nextCode + earlyChange - 1) ?
codeLength : Math.min(Math.log(nextCode + earlyChange) /
0.6931471805599453 + 1, 12) | 0;
}
prevCode = code;
decodedLength += currentSequenceLength;
if (estimatedDecodedSize < decodedLength) {
do {
estimatedDecodedSize += decodedSizeDelta;
} while (estimatedDecodedSize < decodedLength);
buffer = this.ensureBuffer(this.bufferLength + estimatedDecodedSize);
}
for (j = 0; j < currentSequenceLength; j++)
buffer[currentBufferLength++] = currentSequence[j];
}
lzwState.nextCode = nextCode;
lzwState.codeLength = codeLength;
lzwState.prevCode = prevCode;
lzwState.currentSequenceLength = currentSequenceLength;
this.bufferLength = currentBufferLength;
};
return LZWStream;
})();
var NullStream = (function NullStreamClosure() {
function NullStream() {
Stream.call(this, new Uint8Array(0));
}
NullStream.prototype = Stream.prototype;
return NullStream;
})();
function MessageHandler(name, comObj) {
this.name = name;
this.comObj = comObj;
this.callbackIndex = 1;
var callbacks = this.callbacks = {};
var ah = this.actionHandler = {};
ah['console_log'] = [function ahConsoleLog(data) {
log.apply(null, data);
}];
// If there's no console available, console_error in the
// action handler will do nothing.
if ('console' in globalScope) {
ah['console_error'] = [function ahConsoleError(data) {
globalScope['console'].error.apply(null, data);
}];
} else {
ah['console_error'] = [function ahConsoleError(data) {
log.apply(null, data);
}];
}
ah['_warn'] = [function ah_Warn(data) {
warn(data);
}];
comObj.onmessage = function messageHandlerComObjOnMessage(event) {
var data = event.data;
if (data.isReply) {
var callbackId = data.callbackId;
if (data.callbackId in callbacks) {
var callback = callbacks[callbackId];
delete callbacks[callbackId];
callback(data.data);
} else {
error('Cannot resolve callback ' + callbackId);
}
} else if (data.action in ah) {
var action = ah[data.action];
if (data.callbackId) {
var promise = new Promise();
promise.then(function(resolvedData) {
comObj.postMessage({
isReply: true,
callbackId: data.callbackId,
data: resolvedData
});
});
action[0].call(action[1], data.data, promise);
} else {
action[0].call(action[1], data.data);
}
} else {
error('Unkown action from worker: ' + data.action);
}
};
}
MessageHandler.prototype = {
on: function messageHandlerOn(actionName, handler, scope) {
var ah = this.actionHandler;
if (ah[actionName]) {
error('There is already an actionName called "' + actionName + '"');
}
ah[actionName] = [handler, scope];
},
/**
* Sends a message to the comObj to invoke the action with the supplied data.
* @param {String} actionName Action to call.
* @param {JSON} data JSON data to send.
* @param {function} [callback] Optional callback that will handle a reply.
*/
send: function messageHandlerSend(actionName, data, callback) {
var message = {
action: actionName,
data: data
};
if (callback) {
var callbackId = this.callbackIndex++;
this.callbacks[callbackId] = callback;
message.callbackId = callbackId;
}
this.comObj.postMessage(message);
}
};
var WorkerMessageHandler = {
setup: function wphSetup(handler) {
var pdfModel = null;
function loadDocument(pdfData, pdfModelSource) {
// Create only the model of the PDFDoc, which is enough for
// processing the content of the pdf.
var pdfPassword = pdfModelSource.password;
try {
pdfModel = new PDFDocument(new Stream(pdfData), pdfPassword);
} catch (e) {
if (e instanceof PasswordException) {
if (e.code === 'needpassword') {
handler.send('NeedPassword', {
exception: e
});
} else if (e.code === 'incorrectpassword') {
handler.send('IncorrectPassword', {
exception: e
});
}
return;
} else if (e instanceof InvalidPDFException) {
handler.send('InvalidPDF', {
exception: e
});
return;
} else {
handler.send('UnknownError', {
exception: new UnknownErrorException(e.message, e.toString())
});
return;
}
}
var doc = {
numPages: pdfModel.numPages,
fingerprint: pdfModel.getFingerprint(),
destinations: pdfModel.catalog.destinations,
outline: pdfModel.catalog.documentOutline,
info: pdfModel.getDocumentInfo(),
metadata: pdfModel.catalog.metadata,
encrypted: !!pdfModel.xref.encrypt
};
handler.send('GetDoc', {pdfInfo: doc});
}
handler.on('test', function wphSetupTest(data) {
handler.send('test', data instanceof Uint8Array);
});
handler.on('GetDocRequest', function wphSetupDoc(data) {
var source = data.source;
if (source.data) {
// the data is array, instantiating directly from it
loadDocument(source.data, source);
return;
}
PDFJS.getPdf(
{
url: source.url,
progress: function getPDFProgress(evt) {
handler.send('DocProgress', {
loaded: evt.loaded,
total: evt.lengthComputable ? evt.total : void(0)
});
},
error: function getPDFError(e) {
handler.send('DocError', 'Unexpected server response of ' +
e.target.status + '.');
},
headers: source.httpHeaders
},
function getPDFLoad(data) {
loadDocument(data, source);
});
});
handler.on('GetPageRequest', function wphSetupGetPage(data) {
var pageNumber = data.pageIndex + 1;
var pdfPage = pdfModel.getPage(pageNumber);
var page = {
pageIndex: data.pageIndex,
rotate: pdfPage.rotate,
ref: pdfPage.ref,
view: pdfPage.view
};
handler.send('GetPage', {pageInfo: page});
});
handler.on('GetData', function wphSetupGetData(data, promise) {
promise.resolve(pdfModel.stream.bytes);
});
handler.on('GetAnnotationsRequest', function wphSetupGetAnnotations(data) {
var pdfPage = pdfModel.getPage(data.pageIndex + 1);
handler.send('GetAnnotations', {
pageIndex: data.pageIndex,
annotations: pdfPage.getAnnotations()
});
});
handler.on('RenderPageRequest', function wphSetupRenderPage(data) {
var pageNum = data.pageIndex + 1;
PDFJS.LogManager.addLogger({
warn: function(msg) {
globalScope.postMessage({
action: '_warn',
data: msg
});
}
});
var handler = new MessageHandler('worker_processor', this);
WorkerMessageHandler.setup(handler);
}
var JpxImage = (function JpxImageClosure() {
// Table E.1
var SubbandsGainLog2 = {
'LL': 0,
'LH': 1,
'HL': 1,
'HH': 2
};
function JpxImage() {
this.failOnCorruptedImage = false;
}
JpxImage.prototype = {
load: function JpxImage_load(url) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'arraybuffer';
xhr.onload = (function() {
// TODO catch parse error
var data = new Uint8Array(xhr.response || xhr.mozResponseArrayBuffer);
this.parse(data);
if (this.onload)
this.onload();
}).bind(this);
xhr.send(null);
},
parse: function JpxImage_parse(data) {
function ReadUint(data, offset, bytes) {
var n = 0;
for (var i = 0; i < bytes; i++)
n = n * 256 + (data[offset + i] & 0xFF);
return n;
}
var position = 0, length = data.length;
while (position < length) {
var headerSize = 8;
var lbox = ReadUint(data, position, 4);
var tbox = ReadUint(data, position + 4, 4);
position += headerSize;
if (lbox == 1) {
lbox = ReadUint(data, position, 8);
position += 8;
headerSize += 8;
}
if (lbox == 0)
lbox = length - position + headerSize;
if (lbox < headerSize)
}
context.SIZ = siz;
context.components = components;
calculateTileGrids(context, components);
context.QCC = [];
context.COC = [];
break;
case 0xFF5C: // Quantization default (QCD)
length = readUint16(data, position);
var qcd = {};
j = position + 2;
var sqcd = data[j++];
var spqcdSize, scalarExpounded;
switch (sqcd & 0x1F) {
case 0:
spqcdSize = 8;
scalarExpounded = true;
break;
case 1:
spqcdSize = 16;
scalarExpounded = false;
break;
case 2:
spqcdSize = 16;
scalarExpounded = true;
break;
default:
throw 'Invalid SQcd value ' + sqcd;
}
qcd.noQuantization = spqcdSize == 8;
qcd.scalarExpounded = scalarExpounded;
qcd.guardBits = sqcd >> 5;
var spqcds = [];
while (j < length + position) {
var spqcd = {};
if (spqcdSize == 8) {
spqcd.epsilon = data[j++] >> 3;
spqcd.mu = 0;
} else {
spqcd.epsilon = data[j] >> 3;
spqcd.mu = ((data[j] & 0x7) << 8) | data[j + 1];
j += 2;
}
spqcds.push(spqcd);
}
qcd.SPqcds = spqcds;
if (context.mainHeader)
context.QCD = qcd;
else {
context.currentTile.QCD = qcd;
context.currentTile.QCC = [];
}
break;
case 0xFF5D: // Quantization component (QCC)
length = readUint16(data, position);
var qcc = {};
j = position + 2;
var cqcc;
if (context.SIZ.Csiz < 257)
cqcc = data[j++];
else {
cqcc = readUint16(data, j);
j += 2;
}
var sqcd = data[j++];
var spqcdSize, scalarExpounded;
switch (sqcd & 0x1F) {
case 0:
spqcdSize = 8;
scalarExpounded = true;
break;
case 1:
spqcdSize = 16;
scalarExpounded = false;
break;
case 2:
spqcdSize = 16;
scalarExpounded = true;
break;
default:
throw 'Invalid SQcd value ' + sqcd;
}
qcc.noQuantization = spqcdSize == 8;
qcc.scalarExpounded = scalarExpounded;
qcc.guardBits = sqcd >> 5;
var spqcds = [];
while (j < length + position) {
var spqcd = {};
if (spqcdSize == 8) {
spqcd.epsilon = data[j++] >> 3;
spqcd.mu = 0;
} else {
spqcd.epsilon = data[j] >> 3;
spqcd.mu = ((data[j] & 0x7) << 8) | data[j + 1];
j += 2;
}
spqcds.push(spqcd);
}
qcc.SPqcds = spqcds;
if (context.mainHeader)
context.QCC[cqcc] = qcc;
else
context.currentTile.QCC[cqcc] = qcc;
break;
case 0xFF52: // Coding style default (COD)
length = readUint16(data, position);
var cod = {};
j = position + 2;
var scod = data[j++];
cod.entropyCoderWithCustomPrecincts = !!(scod & 1);
cod.sopMarkerUsed = !!(scod & 2);
cod.ephMarkerUsed = !!(scod & 4);
var codingStyle = {};
cod.progressionOrder = data[j++];
cod.layersCount = readUint16(data, j);
j += 2;
cod.multipleComponentTransform = data[j++];
cod.decompositionLevelsCount = data[j++];
cod.xcb = (data[j++] & 0xF) + 2;
}
// moving to the end of the data
length = tile.dataEnd - position;
parseTilePackets(context, data, position, length);
break;
case 0xFF64: // Comment (COM)
length = readUint16(data, position);
// skipping content
break;
default:
throw 'Unknown codestream code: ' + code.toString(16);
}
position += length;
}
} catch (e) {
if (this.failOnCorruptedImage)
error('JPX error: ' + e);
else
warn('JPX error: ' + e + '. Trying to recover');
}
this.tiles = transformComponents(context);
this.width = context.SIZ.Xsiz - context.SIZ.XOsiz;
this.height = context.SIZ.Ysiz - context.SIZ.YOsiz;
this.componentsCount = context.SIZ.Csiz;
}
};
function readUint32(data, offset) {
return (data[offset] << 24) | (data[offset + 1] << 16) |
(data[offset + 2] << 8) | data[offset + 3];
}
function readUint16(data, offset) {
return (data[offset] << 8) | data[offset + 1];
}
function log2(x) {
var n = 1, i = 0;
while (x > n) {
n <<= 1;
i++;
}
return i;
}
function calculateComponentDimensions(component, siz) {
// Section B.2 Component mapping
component.x0 = Math.ceil(siz.XOsiz / component.XRsiz);
component.x1 = Math.ceil(siz.Xsiz / component.XRsiz);
component.y0 = Math.ceil(siz.YOsiz / component.YRsiz);
component.y1 = Math.ceil(siz.Ysiz / component.YRsiz);
component.width = component.x1 - component.x0;
component.height = component.y1 - component.y0;
}
function calculateTileGrids(context, components) {
var siz = context.SIZ;
// Section B.3 Division into tile and tile-components
var tiles = [];
var numXtiles = Math.ceil((siz.Xsiz - siz.XTOsiz) / siz.XTsiz);
var numYtiles = Math.ceil((siz.Ysiz - siz.YTOsiz) / siz.YTsiz);
for (var q = 0; q < numYtiles; q++) {
for (var p = 0; p < numXtiles; p++) {
precinctHeight;
resolution.precinctParameters = {
precinctXOffset: precinctXOffset,
precinctYOffset: precinctYOffset,
precinctWidth: precinctWidth,
precinctHeight: precinctHeight,
numprecinctswide: numprecinctswide,
numprecinctshigh: numprecinctshigh,
numprecincts: numprecincts
};
}
function buildCodeblocks(context, subband, dimensions) {
// Section B.7 Division sub-band into code-blocks
var xcb_ = dimensions.xcb_;
var ycb_ = dimensions.ycb_;
var codeblockWidth = 1 << xcb_;
var codeblockHeight = 1 << ycb_;
var cbx0 = Math.floor(subband.tbx0 / codeblockWidth);
var cby0 = Math.floor(subband.tby0 / codeblockHeight);
var cbx1 = Math.ceil(subband.tbx1 / codeblockWidth);
var cby1 = Math.ceil(subband.tby1 / codeblockHeight);
var precinctParameters = subband.resolution.precinctParameters;
var codeblocks = [];
var precincts = [];
for (var j = cby0; j < cby1; j++) {
for (var i = cbx0; i < cbx1; i++) {
var codeblock = {
cbx: i,
cby: j,
tbx0: codeblockWidth * i,
tby0: codeblockHeight * j,
tbx1: codeblockWidth * (i + 1),
tby1: codeblockHeight * (j + 1)
};
// calculate precinct number
var pi = Math.floor((codeblock.tbx0 precinctParameters.precinctXOffset) /
precinctParameters.precinctWidth);
var pj = Math.floor((codeblock.tby0 precinctParameters.precinctYOffset) /
precinctParameters.precinctHeight);
var precinctNumber = pj +
pi * precinctParameters.numprecinctswide;
codeblock.tbx0_ = Math.max(subband.tbx0, codeblock.tbx0);
codeblock.tby0_ = Math.max(subband.tby0, codeblock.tby0);
codeblock.tbx1_ = Math.min(subband.tbx1, codeblock.tbx1);
codeblock.tby1_ = Math.min(subband.tby1, codeblock.tby1);
codeblock.precinctNumber = precinctNumber;
codeblock.subbandType = subband.type;
var coefficientsLength = (codeblock.tbx1_ - codeblock.tbx0_) *
(codeblock.tby1_ - codeblock.tby0_);
codeblock.Lblock = 3;
codeblocks.push(codeblock);
// building precinct for the sub-band
var precinct;
if (precinctNumber in precincts) {
precinct = precincts[precinctNumber];
precinct.cbxMin = Math.min(precinct.cbxMin, i);
precinct.cbyMin = Math.min(precinct.cbyMin, j);
precinct.cbxMax = Math.max(precinct.cbxMax, i);
'LH';
Math.ceil(component.tcx0 / bscale);
Math.ceil(component.tcy0 / bscale - 0.5);
Math.ceil(component.tcx1 / bscale);
}
function alignToByte() {
bufferSize = 0;
if (skipNextBit) {
position++;
skipNextBit = false;
}
}
function readCodingpasses() {
var value = readBits(1);
if (value == 0)
return 1;
value = (value << 1) | readBits(1);
if (value == 0x02)
return 2;
value = (value << 2) | readBits(2);
if (value <= 0x0E)
return (value & 0x03) + 3;
value = (value << 5) | readBits(5);
if (value <= 0x1FE)
return (value & 0x1F) + 6;
value = (value << 7) | readBits(7);
return (value & 0x7F) + 37;
}
var tileIndex = context.currentTile.index;
var tile = context.tiles[tileIndex];
var packetsIterator = tile.packetsIterator;
while (position < dataLength) {
var packet = packetsIterator.nextPacket();
if (!readBits(1)) {
alignToByte();
continue;
}
var layerNumber = packet.layerNumber;
var queue = [];
for (var i = 0, ii = packet.codeblocks.length; i < ii; i++) {
var codeblock = packet.codeblocks[i];
var precinct = codeblock.precinct;
var codeblockColumn = codeblock.cbx - precinct.cbxMin;
var codeblockRow = codeblock.cby - precinct.cbyMin;
var codeblockIncluded = false;
var firstTimeInclusion = false;
if ('included' in codeblock) {
codeblockIncluded = !!readBits(1);
} else {
// reading inclusion tree
var precinct = codeblock.precinct;
var inclusionTree, zeroBitPlanesTree;
if ('inclusionTree' in precinct) {
inclusionTree = precinct.inclusionTree;
} else {
// building inclusion and zero bit-planes trees
var width = precinct.cbxMax - precinct.cbxMin + 1;
var height = precinct.cbyMax - precinct.cbyMin + 1;
inclusionTree = new InclusionTree(width, height, layerNumber);
zeroBitPlanesTree = new TagTree(width, height);
precinct.inclusionTree = inclusionTree;
precinct.zeroBitPlanesTree = zeroBitPlanesTree;
}
return position;
}
function copyCoefficients(coefficients, x0, y0, width, height,
delta, mb, codeblocks, transformation,
segmentationSymbolUsed) {
var r = 0.5; // formula (E-6)
for (var i = 0, ii = codeblocks.length; i < ii; ++i) {
var codeblock = codeblocks[i];
var blockWidth = codeblock.tbx1_ - codeblock.tbx0_;
var blockHeight = codeblock.tby1_ - codeblock.tby0_;
if (blockWidth == 0 || blockHeight == 0)
continue;
if (!('data' in codeblock))
continue;
var bitModel, currentCodingpassType;
bitModel = new BitModel(blockWidth, blockHeight, codeblock.subbandType,
codeblock.zeroBitPlanes);
currentCodingpassType = 2; // first bit plane starts from cleanup
// collect data
var data = codeblock.data, totalLength = 0, codingpasses = 0;
for (var q = 0, qq = data.length; q < qq; q++) {
var dataItem = data[q];
totalLength += dataItem.end - dataItem.start;
codingpasses += dataItem.codingpasses;
}
var encodedData = new Uint8Array(totalLength), k = 0;
for (var q = 0, qq = data.length; q < qq; q++) {
var dataItem = data[q];
var chunk = dataItem.data.subarray(dataItem.start, dataItem.end);
encodedData.set(chunk, k);
k += chunk.length;
}
// decoding the item
var decoder = new ArithmeticDecoder(encodedData, 0, totalLength);
bitModel.setDecoder(decoder);
for (var q = 0; q < codingpasses; q++) {
switch (currentCodingpassType) {
case 0:
bitModel.runSignificancePropogationPass();
break;
case 1:
bitModel.runMagnitudeRefinementPass();
break;
case 2:
bitModel.runCleanupPass();
if (segmentationSymbolUsed)
bitModel.checkSegmentationSymbol();
break;
}
currentCodingpassType = (currentCodingpassType + 1) % 3;
}
var offset = (codeblock.tbx0_ - x0) + (codeblock.tby0_ - y0) * width;
var position = 0;
for (var j = 0; j < blockHeight; j++) {
for (var k = 0; k < blockWidth; k++) {
var n = (bitModel.coefficentsSign[position] ? -1 : 1) *
bitModel.coefficentsMagnitude[position];
var nb = bitModel.bitsDecoded[position], correction;
if (transformation == 0 || mb > nb) {
// use r only if transformation is irreversible or
// not all bitplanes were decoded for reversible transformation
n += n < 0 ? n - r : n > 0 ? n + r : 0;
correction = 1 << (mb - nb);
} else
correction = 1;
coefficients[offset++] = n * correction * delta;
position++;
}
offset += width - blockWidth;
}
}
}
function transformTile(context, tile, c) {
var component = tile.components[c];
var codingStyleParameters = component.codingStyleParameters;
var quantizationParameters = component.quantizationParameters;
var decompositionLevelsCount =
codingStyleParameters.decompositionLevelsCount;
var spqcds = quantizationParameters.SPqcds;
var scalarExpounded = quantizationParameters.scalarExpounded;
var guardBits = quantizationParameters.guardBits;
var transformation = codingStyleParameters.transformation;
var segmentationSymbolUsed = codingStyleParameters.segmentationSymbolUsed;
var precision = context.components[c].precision;
var subbandCoefficients = [];
var k = 0, b = 0;
for (var i = 0; i <= decompositionLevelsCount; i++) {
var resolution = component.resolutions[i];
for (var j = 0, jj = resolution.subbands.length; j < jj; j++) {
var mu, epsilon;
if (!scalarExpounded) {
// formula E-5
mu = spqcds[0].mu;
epsilon = spqcds[0].epsilon + (i > 0 ? 1 - i : 0);
} else {
mu = spqcds[b].mu;
epsilon = spqcds[b].epsilon;
}
var
var
var
var
subband = resolution.subbands[j];
width = subband.tbx1 - subband.tbx0;
height = subband.tby1 - subband.tby0;
gainLog2 = SubbandsGainLog2[subband.type];
subbandCoefficients.push({
width: width,
height: height,
items: coefficients
});
b++;
}
}
var transformation = codingStyleParameters.transformation;
var transform = transformation == 0 ? new IrreversibleTransform() :
new ReversibleTransform();
var result = transform.calculate(subbandCoefficients,
component.tcx0, component.tcy0);
return {
left: component.tcx0,
top: component.tcy0,
width: result.width,
height: result.height,
items: result.items
};
}
function transformComponents(context) {
var siz = context.SIZ;
var components = context.components;
var componentsCount = siz.Csiz;
var resultImages = [];
for (var i = 0, ii = context.tiles.length; i < ii; i++) {
var tile = context.tiles[i];
var result = [];
for (var c = 0; c < componentsCount; c++) {
var image = transformTile(context, tile, c);
result.push(image);
}
// Section G.2.2 Inverse multi component transform
if (tile.codingStyleDefaultParameters.multipleComponentTransform) {
var y0items = result[0].items;
var y1items = result[1].items;
var y2items = result[2].items;
for (var j = 0, jj = y0items.length; j < jj; j++) {
var y0 = y0items[j], y1 = y1items[j], y2 = y2items[j];
var i1 = y0 - ((y2 + y1) >> 2);
y1items[j] = i1;
y0items[j] = y2 + i1;
y2items[j] = y1 + i1;
}
}
// Section G.1 DC level shifting to unsigned component values
for (var c = 0; c < componentsCount; c++) {
var component = components[c];
if (component.isSigned)
continue;
var
var
var
for
items[j] += offset;
}
// To simplify things: shift and clamp output to 8 bit unsigned
for (var c = 0; c < componentsCount; c++) {
var component = components[c];
var offset = component.isSigned ? 128 : 0;
var shift = component.precision - 8;
var tileImage = result[c];
var items = tileImage.items;
var data = new Uint8Array(items.length);
for (var j = 0, jj = items.length; j < jj; j++) {
var value = (items[j] >> shift) + offset;
data[j] = value < 0 ? 0 : value > 255 ? 255 : value;
}
result[c].items = data;
}
resultImages.push(result);
}
return resultImages;
}
function initializeTile(context, tileIndex) {
var siz = context.SIZ;
var componentsCount = siz.Csiz;
var tile = context.tiles[tileIndex];
var resultTiles = [];
for (var c = 0; c < componentsCount; c++) {
var component = tile.components[c];
var qcdOrQcc = c in context.currentTile.QCC ?
context.currentTile.QCC[c] : context.currentTile.QCD;
component.quantizationParameters = qcdOrQcc;
var codOrCoc = c in context.currentTile.COC ?
context.currentTile.COC[c] : context.currentTile.COD;
component.codingStyleParameters = codOrCoc;
}
tile.codingStyleDefaultParameters = context.currentTile.COD;
}
// Section B.10.2 Tag trees
var TagTree = (function TagTreeClosure() {
function TagTree(width, height) {
var levelsLength = log2(Math.max(width, height)) + 1;
this.levels = [];
for (var i = 0; i < levelsLength; i++) {
var level = {
width: width,
height: height,
items: []
};
this.levels.push(level);
width = Math.ceil(width / 2);
height = Math.ceil(height / 2);
}
}
TagTree.prototype = {
reset: function TagTree_reset(i, j) {
var currentLevel = 0, value = 0;
while (currentLevel < this.levels.length) {
var level = this.levels[currentLevel];
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
0x5601,
0x3401,
0x1801,
0x0AC1,
0x0521,
0x0221,
0x5601,
0x5401,
0x4801,
0x3801,
0x3001,
0x2401,
0x1C01,
0x1601,
0x5601,
0x5401,
0x5101,
0x4801,
0x3801,
0x3401,
0x3001,
0x2801,
0x2401,
0x2201,
0x1C01,
0x1801,
0x1601,
0x1401,
0x1201,
0x1101,
0x0AC1,
0x09C1,
0x08A1,
0x0521,
0x0441,
0x02A1,
0x0221,
0x0141,
0x0111,
0x0085,
0x0049,
0x0025,
0x0015,
0x0009,
0x0005,
0x0001,
0x5601,
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
];
function ArithmeticDecoder(data, start, end) {
this.data = data;
this.bp = start;
this.dataEnd = end;
this.chigh = data[start];
this.clow = 0;
this.byteIn();
this.chigh = ((this.chigh << 7) & 0xFFFF) | ((this.clow >> 9) & 0x7F);
},
exchangeMps: function ArithmeticDecoder_exchangeMps(cx) {
var d;
var qeTableIcx = QeTable[cx.index];
if (this.a < qeTableIcx.qe) {
d = 1 - cx.mps;
if (qeTableIcx.switchFlag == 1) {
cx.mps = 1 - cx.mps;
}
cx.index = qeTableIcx.nlps;
} else {
d = cx.mps;
cx.index = qeTableIcx.nmps;
}
return d;
},
exchangeLps: function ArithmeticDecoder_exchangeLps(cx) {
var d;
var qeTableIcx = QeTable[cx.index];
if (this.a < qeTableIcx.qe) {
this.a = qeTableIcx.qe;
d = cx.mps;
cx.index = qeTableIcx.nmps;
} else {
this.a = qeTableIcx.qe;
d = 1 - cx.mps;
if (qeTableIcx.switchFlag == 1) {
cx.mps = 1 - cx.mps;
}
cx.index = qeTableIcx.nlps;
}
return d;
}
};
return ArithmeticDecoder;
})();
// Section D. Coefficient bit modeling
var BitModel = (function BitModelClosure() {
// Table D-1
// The index is binary presentation: 0dddvvhh, ddd // vv - sum of Vi (0..2), and hh - sum of Hi (0..2)
var LLAndLHContextsLabel = new Uint8Array([
0, 5, 8, 0, 3, 7, 8, 0, 4, 7, 8, 0, 0, 0, 0, 0, 1,
7, 8, 0, 0, 0, 0, 0, 2, 6, 8, 0, 3, 7, 8, 0, 4, 7,
8, 0, 3, 7, 8, 0, 4, 7, 8, 0, 0, 0, 0, 0, 2, 6, 8,
]);
var HLContextLabel = new Uint8Array([
0, 3, 4, 0, 5, 7, 7, 0, 8, 8, 8, 0, 0, 0, 0, 0, 1,
8, 8, 0, 0, 0, 0, 0, 2, 3, 4, 0, 6, 7, 7, 0, 8, 8,
4, 0, 6, 7, 7, 0, 8, 8, 8, 0, 0, 0, 0, 0, 2, 3, 4,
]);
var HHContextLabel = new Uint8Array([
0, 1, 2, 0, 1, 2, 2, 0, 2, 2, 2, 0, 0, 0, 0, 0, 3,
5, 5, 0, 0, 0, 0, 0, 6, 7, 7, 0, 7, 7, 7, 0, 7, 7,
8, 0, 8, 8, 8, 0, 8, 8, 8, 0, 0, 0, 0, 0, 8, 8, 8,
]);
sum of Di (0..4),
6, 8, 0, 3, 7, 8, 0, 4,
8, 0, 0, 0, 0, 0, 2, 6,
0, 3, 7, 8, 0, 4, 7, 8
3, 4, 0, 6, 7, 7, 0, 8,
8, 0, 0, 0, 0, 0, 2, 3,
0, 6, 7, 7, 0, 8, 8, 8
4, 5, 0, 4, 5, 5, 0, 5,
7, 0, 0, 0, 0, 0, 8, 8,
0, 8, 8, 8, 0, 8, 8, 8
// Table D-2
function calcSignContribution(significance0, sign0, significance1, sign1) {
if (significance1) {
if (!sign1)
return significance0 ? (!sign0 ? 1 : 0) : 1;
else
return significance0 ? (!sign0 ? 0 : -1) : -1;
} else
return significance0 ? (!sign0 ? 1 : -1) : 0;
}
// Table D-3
var SignContextLabels = [
{contextLabel: 13, xorBit: 0},
{contextLabel: 12, xorBit: 0},
{contextLabel: 11, xorBit: 0},
{contextLabel: 10, xorBit: 0},
{contextLabel: 9, xorBit: 0},
{contextLabel: 10, xorBit: 1},
{contextLabel: 11, xorBit: 1},
{contextLabel: 12, xorBit: 1},
{contextLabel: 13, xorBit: 1}
];
function BitModel(width, height, subband, zeroBitPlanes) {
this.width = width;
this.height = height;
this.contextLabelTable = subband == 'HH' ? HHContextLabel :
subband == 'HL' ? HLContextLabel : LLAndLHContextsLabel;
var coefficientCount = width * height;
// coefficients outside the encoding region treated as insignificant
// add border state cells for significanceState
this.neighborsSignificance = new Uint8Array(coefficientCount);
this.coefficentsSign = new Uint8Array(coefficientCount);
this.coefficentsMagnitude = new Uint32Array(coefficientCount);
this.processingFlags = new Uint8Array(coefficientCount);
var bitsDecoded = new Uint8Array(this.width * this.height);
for (var i = 0, ii = bitsDecoded.length; i < ii; i++)
bitsDecoded[i] = zeroBitPlanes;
this.bitsDecoded = bitsDecoded;
this.reset();
}
BitModel.prototype = {
setDecoder: function BitModel_setDecoder(decoder) {
this.decoder = decoder;
},
reset: function BitModel_reset() {
this.uniformContext = {index: 46, mps: 0};
this.runLengthContext = {index: 3, mps: 0};
this.contexts = [];
this.contexts.push({index: 4, mps: 0});
for (var i = 1; i <= 16; i++)
this.contexts.push({index: 0, mps: 0});
},
setNeighborsSignificance:
function BitModel_setNeighborsSignificance(row, column) {
var neighborsSignificance = this.neighborsSignificance;
var width = this.width, height = this.height;
var index = row * width + column;
if (row > 0) {
if (column > 0)
neighborsSignificance[index - width - 1] += 0x10;
if (column + 1 < width)
neighborsSignificance[index - width + 1] += 0x10;
neighborsSignificance[index - width] += 0x04;
}
if (row + 1 < height) {
if (column > 0)
neighborsSignificance[index + width - 1] += 0x10;
if (column + 1 < width)
neighborsSignificance[index + width + 1] += 0x10;
neighborsSignificance[index + width] += 0x04;
}
if (column > 0)
neighborsSignificance[index - 1] += 0x01;
if (column + 1 < width)
neighborsSignificance[index + 1] += 0x01;
neighborsSignificance[index] |= 0x80;
},
runSignificancePropogationPass:
function BitModel_runSignificancePropogationPass() {
var decoder = this.decoder;
var width = this.width, height = this.height;
var coefficentsMagnitude = this.coefficentsMagnitude;
var coefficentsSign = this.coefficentsSign;
var contextLabels = this.contextLabels;
var neighborsSignificance = this.neighborsSignificance;
var processingFlags = this.processingFlags;
var contexts = this.contexts;
var labels = this.contextLabelTable;
var bitsDecoded = this.bitsDecoded;
// clear processed flag
var processedInverseMask = ~1;
var processedMask = 1;
var firstMagnitudeBitMask = 2;
for (var q = 0, qq = width * height; q < qq; q++)
processingFlags[q] &= processedInverseMask;
for (var i0 = 0; i0 < height; i0 += 4) {
for (var j = 0; j < width; j++) {
var index = i0 * width + j;
for (var i1 = 0; i1 < 4; i1++, index += width) {
var i = i0 + i1;
if (i >= height)
break;
if (coefficentsMagnitude[index] || !neighborsSignificance[index])
continue;
var contextLabel = labels[neighborsSignificance[index]];
var cx = contexts[contextLabel];
var decision = decoder.readBit(cx);
if (decision) {
var sign = this.decodeSignBit(i, j);
coefficentsSign[index] = sign;
coefficentsMagnitude[index] = 1;
this.setNeighborsSignificance(i, j);
processingFlags[index] |= firstMagnitudeBitMask;
}
bitsDecoded[index]++;
processingFlags[index] |= processedMask;
}
}
}
},
decodeSignBit: function BitModel_decodeSignBit(row, column) {
var width = this.width, height = this.height;
var index = row * width + column;
var coefficentsMagnitude = this.coefficentsMagnitude;
var coefficentsSign = this.coefficentsSign;
var horizontalContribution = calcSignContribution(
column > 0 && coefficentsMagnitude[index - 1],
coefficentsSign[index - 1],
column + 1 < width && coefficentsMagnitude[index + 1],
coefficentsSign[index + 1]);
var verticalContribution = calcSignContribution(
row > 0 && coefficentsMagnitude[index - width],
coefficentsSign[index - width],
row + 1 < height && coefficentsMagnitude[index + width],
coefficentsSign[index + width]);
var contextLabelAndXor = SignContextLabels[
3 * (1 - horizontalContribution) + (1 - verticalContribution)];
var contextLabel = contextLabelAndXor.contextLabel;
var cx = this.contexts[contextLabel];
var decoded = this.decoder.readBit(cx);
return decoded ^ contextLabelAndXor.xorBit;
},
runMagnitudeRefinementPass:
function BitModel_runMagnitudeRefinementPass() {
var decoder = this.decoder;
var width = this.width, height = this.height;
var coefficentsMagnitude = this.coefficentsMagnitude;
var neighborsSignificance = this.neighborsSignificance;
var contexts = this.contexts;
var bitsDecoded = this.bitsDecoded;
var processingFlags = this.processingFlags;
var processedMask = 1;
var firstMagnitudeBitMask = 2;
for (var i0 = 0; i0 < height; i0 += 4) {
for (var j = 0; j < width; j++) {
for (var i1 = 0; i1 < 4; i1++) {
var i = i0 + i1;
if (i >= height)
break;
var index = i * width + j;
// significant but not those that have just become
if (!coefficentsMagnitude[index] ||
(processingFlags[index] & processedMask) != 0)
continue;
var contextLabel = 16;
if ((processingFlags[index] &
firstMagnitudeBitMask) != 0) {
processingFlags[i * width + j] ^= firstMagnitudeBitMask;
// first refinement
var significance = neighborsSignificance[index];
var sumOfSignificance = (significance & 3) +
((significance >> 2) & 3) + ((significance >> 4) & 7);
contextLabel = sumOfSignificance >= 1 ? 15 : 14;
}
var cx = contexts[contextLabel];
var bit = decoder.readBit(cx);
coefficentsMagnitude[index] =
(coefficentsMagnitude[index] << 1) | bit;
bitsDecoded[index]++;
processingFlags[index] |= processedMask;
}
}
}
},
runCleanupPass: function BitModel_runCleanupPass() {
var decoder = this.decoder;
var width = this.width, height = this.height;
var neighborsSignificance = this.neighborsSignificance;
var significanceState = this.significanceState;
var coefficentsMagnitude = this.coefficentsMagnitude;
var coefficentsSign = this.coefficentsSign;
var contexts = this.contexts;
var labels = this.contextLabelTable;
var bitsDecoded = this.bitsDecoded;
var processingFlags = this.processingFlags;
var processedMask = 1;
var firstMagnitudeBitMask = 2;
var oneRowDown = width;
var twoRowsDown = width * 2;
var threeRowsDown = width * 3;
for (var i0 = 0; i0 < height; i0 += 4) {
for (var j = 0; j < width; j++) {
var index0 = i0 * width + j;
// using the property: labels[neighborsSignificance[index]] == 0
// when neighborsSignificance[index] == 0
var allEmpty = i0 + 3 < height &&
processingFlags[index0] == 0 &&
processingFlags[index0 + oneRowDown] == 0 &&
processingFlags[index0 + twoRowsDown] == 0 &&
processingFlags[index0 + threeRowsDown] == 0 &&
neighborsSignificance[index0] == 0 &&
neighborsSignificance[index0 + oneRowDown] == 0 &&
neighborsSignificance[index0 + twoRowsDown] == 0 &&
neighborsSignificance[index0 + threeRowsDown] == 0;
var i1 = 0, index = index0;
var cx, i;
if (allEmpty) {
cx = this.runLengthContext;
var hasSignificantCoefficent = decoder.readBit(cx);
if (!hasSignificantCoefficent) {
bitsDecoded[index0]++;
bitsDecoded[index0 + oneRowDown]++;
bitsDecoded[index0 + twoRowsDown]++;
bitsDecoded[index0 + threeRowsDown]++;
continue; // next column
}
cx = this.uniformContext;
i1 = (decoder.readBit(cx) << 1) | decoder.readBit(cx);
i = i0 + i1;
index += i1 * width;
var sign = this.decodeSignBit(i, j);
coefficentsSign[index] = sign;
coefficentsMagnitude[index] = 1;
this.setNeighborsSignificance(i, j);
processingFlags[index] |= firstMagnitudeBitMask;
index = index0;
for (var i2 = i0; i2 <= i; i2++, index += width)
bitsDecoded[index]++;
i1++;
}
for (; i1 < 4; i1++, index += width) {
i = i0 + i1;
if (i >= height)
break;
if (coefficentsMagnitude[index] ||
(processingFlags[index] & processedMask) != 0)
continue;
var contextLabel = labels[neighborsSignificance[index]];
cx = contexts[contextLabel];
var decision = decoder.readBit(cx);
if (decision == 1) {
var sign = this.decodeSignBit(i, j);
coefficentsSign[index] = sign;
coefficentsMagnitude[index] = 1;
this.setNeighborsSignificance(i, j);
processingFlags[index] |= firstMagnitudeBitMask;
}
bitsDecoded[index]++;
}
}
}
},
checkSegmentationSymbol: function BitModel_checkSegmentationSymbol() {
var decoder = this.decoder;
var cx = this.uniformContext;
var symbol = (decoder.readBit(cx) << 3) | (decoder.readBit(cx) << 2) |
(decoder.readBit(cx) << 1) | decoder.readBit(cx);
if (symbol != 0xA)
throw 'Invalid segmentation symbol';
}
};
return BitModel;
})();
// Section F, Discrete wavelet transofrmation
var Transform = (function TransformClosure() {
function Transform() {
}
Transform.prototype.calculate =
+= 2)
+= 2)
+= 2)
+= 2)
bufferPadding = 4;
bufferLength = new Float32Array(Math.max(width, height) +
* bufferPadding);
buffer = new Float32Array(bufferLength);
bufferOut = new Float32Array(bufferLength);
};
return Transform;
})();
// Section 3.8.2 Irreversible 9-7 filter
var IrreversibleTransform = (function IrreversibleTransformClosure() {
function IrreversibleTransform() {
Transform.call(this);
}
IrreversibleTransform.prototype = Object.create(Transform.prototype);
IrreversibleTransform.prototype.filter =
function irreversibleTransformFilter(y, offset, length, i0, x) {
var i0_ = Math.floor(i0 / 2);
var i1_ = Math.floor((i0 + length) / 2);
var offset_ = offset - (i0 % 1);
var
var
var
var
var
var
alpha = -1.586134342059924;
beta = -0.052980118572961;
gamma = 0.882911075530934;
delta = 0.443506852043971;
K = 1.230174104914001;
K_ = 1 / K;
// step 1
var j = offset_ - 2;
for (var n = i0_ - 1, nn = i1_ + 2; n < nn; n++, j += 2)
x[j] = K * y[j];
// step 2
var j = offset_ - 3;
for (var n = i0_ - 2, nn = i1_ + 2; n < nn; n++, j += 2)
x[j] = K_ * y[j];
// step 3
var j = offset_ - 2;
for (var n = i0_ - 1, nn = i1_ + 2; n < nn; n++, j += 2)
x[j] -= delta * (x[j - 1] + x[j + 1]);
// step 4
var j = offset_ - 1;
for (var n = i0_ - 1, nn = i1_ + 1; n < nn; n++, j += 2)
x[j] -= gamma * (x[j - 1] + x[j + 1]);
// step 5
var j = offset_;
for (var n = i0_, nn = i1_ + 1; n < nn; n++, j += 2)
x[j] -= beta * (x[j - 1] + x[j + 1]);
// step 6
var j = offset_ + 1;
for (var n = i0_, nn = i1_; n < nn; n++, j += 2)
x[j] -= alpha * (x[j - 1] + x[j + 1]);
};
return IrreversibleTransform;
})();
// Section 3.8.1 Reversible 5-3 filter
var ReversibleTransform = (function ReversibleTransformClosure() {
function ReversibleTransform() {
Transform.call(this);
}
ReversibleTransform.prototype = Object.create(Transform.prototype);
ReversibleTransform.prototype.filter =
function reversibleTransformFilter(y, offset, length, i0, x) {
var i0_ = Math.floor(i0 / 2);
var i1_ = Math.floor((i0 + length) / 2);
var offset_ = offset - (i0 % 1);
for (var n = i0_, nn = i1_ + 1, j = offset_; n < nn; n++, j += 2)
x[j] = y[j] - Math.floor((y[j - 1] + y[j + 1] + 2) / 4);
for (var n = i0_, nn = i1_, j = offset_ + 1; n < nn; n++, j += 2)
x[j] = y[j] + Math.floor((x[j - 1] + x[j + 1]) / 2);
};
return ReversibleTransform;
})();
return JpxImage;
})();
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
{qe:
0x1101,
0x0AC1,
0x09C1,
0x08A1,
0x0521,
0x0441,
0x02A1,
0x0221,
0x0141,
0x0111,
0x0085,
0x0049,
0x0025,
0x0015,
0x0009,
0x0005,
0x0001,
0x5601,
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
nmps:
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
45,
45,
46,
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
nlps:
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
46,
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
switchFlag:
0},
0},
0},
0},
0},
0},
0},
0},
0},
0},
0},
0},
0},
0},
0},
0},
0},
0}
];
function ArithmeticDecoder(data, start, end) {
this.data = data;
this.bp = start;
this.dataEnd = end;
this.chigh = data[start];
this.clow = 0;
this.byteIn();
this.chigh = ((this.chigh << 7) & 0xFFFF) | ((this.clow >> 9) & 0x7F);
this.clow = (this.clow << 7) & 0xFFFF;
this.ct -= 7;
this.a = 0x8000;
}
ArithmeticDecoder.prototype = {
byteIn: function ArithmeticDecoder_byteIn() {
var data = this.data;
var bp = this.bp;
if (data[bp] == 0xFF) {
var b1 = data[bp + 1];
if (b1 > 0x8F) {
this.clow += 0xFF00;
this.ct = 8;
} else {
bp++;
this.clow += (data[bp] << 9);
this.ct = 7;
this.bp = bp;
}
} else {
bp++;
this.clow += bp < this.dataEnd ? (data[bp] << 8) : 0xFF00;
this.ct = 8;
this.bp = bp;
}
if (this.clow > 0xFFFF) {
this.chigh += (this.clow >> 16);
this.clow &= 0xFFFF;
}
},
readBit: function ArithmeticDecoder_readBit(cx) {
var qeIcx = QeTable[cx.index].qe;
this.a -= qeIcx;
if (this.chigh < qeIcx) {
var d = this.exchangeLps(cx);
this.renormD();
return d;
} else {
this.chigh -= qeIcx;
if ((this.a & 0x8000) == 0) {
var d = this.exchangeMps(cx);
this.renormD();
return d;
} else {
return cx.mps;
}
}
},
renormD: function ArithmeticDecoder_renormD() {
do {
if (this.ct == 0)
this.byteIn();
this.a <<= 1;
this.chigh = ((this.chigh << 1) & 0xFFFF) | ((this.clow >> 15) & 1);
this.clow = (this.clow << 1) & 0xFFFF;
this.ct--;
} while ((this.a & 0x8000) == 0);
},
exchangeMps: function ArithmeticDecoder_exchangeMps(cx) {
var d;
var qeTableIcx = QeTable[cx.index];
if (this.a < qeTableIcx.qe) {
d = 1 - cx.mps;
if (qeTableIcx.switchFlag == 1) {
cx.mps = 1 - cx.mps;
}
cx.index = qeTableIcx.nlps;
} else {
d = cx.mps;
cx.index = qeTableIcx.nmps;
}
return d;
},
exchangeLps: function ArithmeticDecoder_exchangeLps(cx) {
var d;
var qeTableIcx = QeTable[cx.index];
if (this.a < qeTableIcx.qe) {
this.a = qeTableIcx.qe;
d = cx.mps;
cx.index = qeTableIcx.nmps;
} else {
this.a = qeTableIcx.qe;
d = 1 - cx.mps;
if (qeTableIcx.switchFlag == 1) {
cx.mps = 1 - cx.mps;
}
cx.index = qeTableIcx.nlps;
}
return d;
}
};
return ArithmeticDecoder;
})();
// Utility data structures
function ContextCache() {}
ContextCache.prototype = {
getContexts: function(id) {
if (id in this)
return this[id];
return (this[id] = []);
}
};
function DecodingContext(data, start, end) {
this.data = data;
this.start = start;
this.end = end;
}
DecodingContext.prototype = {
get decoder() {
var decoder = new ArithmeticDecoder(this.data, this.start, this.end);
return shadow(this, 'decoder', decoder);
},
get contextCache() {
var cache = new ContextCache();
return shadow(this, 'contextCache', cache);
}
};
// Annex A. Arithmetic Integer Decoding Procedure
// A.2 Procedure for decoding values
function decodeInteger(contextCache, procedure, decoder) {
var contexts = contextCache.getContexts(procedure);
var prev = 1;
var state = 1, v = 0, s;
var toRead = 32, offset = 4436; // defaults for state 7
while (state) {
var cx = contexts[prev];
if (!cx)
contexts[prev] = cx = {index: 0, mps: 0};
var bit = decoder.readBit(cx);
prev = prev < 256 ? (prev << 1) | bit :
(((prev << 1) | bit) & 511) | 256;
switch (state) {
case 1:
s = !!bit;
break;
case 2:
if (bit) break;
state = 7;
toRead = 2;
offset = 0;
break;
case 3:
if (bit) break;
state = 7;
toRead = 4;
offset = 4;
break;
case 4:
if (bit) break;
state = 7;
toRead = 6;
offset = 20;
break;
case 5:
if (bit) break;
state = 7;
toRead = 8;
offset = 84;
break;
case 6:
if (bit) break;
state = 7;
toRead = 12;
offset = 340;
break;
default:
v = v * 2 + bit;
if (--toRead == 0)
state = 0;
continue;
}
state++;
}
v += offset;
return !s ? v : v > 0 ? -v : null;
}
// A.3 The IAID decoding procedure
function decodeIAID(contextCache, decoder, codeLength) {
var contexts = contextCache.getContexts('IAID');
var prev = 1;
for (var i = 0; i < codeLength; i++) {
var cx = contexts[prev];
if (!cx)
contexts[prev] = cx = {index: 0, mps: 0};
var bit = decoder.readBit(cx);
prev = (prev * 2) + bit;
}
if (codeLength < 31)
return prev & ((1 << codeLength) - 1);
else
return prev - Math.pow(2, codeLength);
}
// 7.3 Segment types
var SegmentTypes = [
return i;
}
function readInt32(data, start) {
return (data[start] << 24) | (data[start + 1] << 16) |
(data[start + 2] << 8) | data[start + 3];
}
function readUint32(data, start) {
var value = readInt32(data, start);
return value & 0x80000000 ? (value + 4294967296) : value;
}
function readUint16(data, start) {
return (data[start] << 8) | data[start + 1];
}
function readInt8(data, start) {
return (data[start] << 24) >> 24;
}
// 6.2 Generic Region Decoding Procedure
function decodeBitmap(mmr, width, height, templateIndex, prediction, skip, at,
decodingContext) {
if (mmr)
error('JBIG2 error: MMR encoding is not supported');
var useskip = !!skip;
var template = CodingTemplates[templateIndex].concat(at);
var templateLength = template.length;
var templateX = new Int32Array(templateLength);
var templateY = new Int32Array(templateLength);
for (var k = 0; k < templateLength; k++) {
templateX[k] = template[k].x;
templateY[k] = template[k].y;
}
var pseudoPixelContext = ReusedContexts[templateIndex];
var bitmap = [];
var decoder = decodingContext.decoder;
var contexts = decodingContext.contextCache.getContexts('GB');
var ltp = 0;
for (var i = 0; i < height; i++) {
if (prediction) {
var cx = contexts[pseudoPixelContext];
if (!cx)
contexts[pseudoPixelContext] = cx = {index: 0, mps: 0};
var sltp = decoder.readBit(cx);
ltp ^= sltp;
}
if (ltp) {
bitmap.push(bitmap[bitmap.length - 1]); // duplicate previous row
continue;
}
var row = new Uint8Array(width);
bitmap.push(row);
for (var j = 0; j < width; j++) {
if (useskip && skip[i][j]) {
row[j] = 0;
continue;
}
var contextLabel = 0;
for (var k = 0; k < templateLength; k++) {
var i0 = i + templateY[k], j0 = j + templateX[k];
if (i0 < 0 || j0 < 0 || j0 >= width)
contextLabel <<= 1; // out of bound pixel
else
contextLabel = (contextLabel << 1) | bitmap[i0][j0];
}
var cx = contexts[contextLabel];
if (!cx)
contexts[contextLabel] = cx = {index: 0, mps: 0};
var pixel = decoder.readBit(cx);
row[j] = pixel;
}
}
return bitmap;
}
// 6.3.2 Generic Refinement Region Decoding Procedure
function decodeRefinement(width, height, templateIndex, referenceBitmap,
offsetX, offsetY, prediction, at,
decodingContext) {
var codingTemplate = RefinementTemplates[templateIndex].coding;
if (templateIndex == 0)
codingTemplate = codingTemplate.concat([at[0]]);
var codingTemplateLength = codingTemplate.length;
var codingTemplateX = new Int32Array(codingTemplateLength);
var codingTemplateY = new Int32Array(codingTemplateLength);
for (var k = 0; k < codingTemplateLength; k++) {
codingTemplateX[k] = codingTemplate[k].x;
codingTemplateY[k] = codingTemplate[k].y;
}
var referenceTemplate = RefinementTemplates[templateIndex].reference;
if (templateIndex == 0)
referenceTemplate = referenceTemplate.concat([at[1]]);
var referenceTemplateLength = referenceTemplate.length;
var referenceTemplateX = new Int32Array(referenceTemplateLength);
var referenceTemplateY = new Int32Array(referenceTemplateLength);
for (var k = 0; k < referenceTemplateLength; k++) {
referenceTemplateX[k] = referenceTemplate[k].x;
referenceTemplateY[k] = referenceTemplate[k].y;
}
var referenceWidth = referenceBitmap[0].length;
var referenceHeight = referenceBitmap.length;
var pseudoPixelContext = RefinementReusedContexts[templateIndex];
var bitmap = [];
var decoder = decodingContext.decoder;
var contexts = decodingContext.contextCache.getContexts('GR');
var ltp = 0;
for (var i = 0; i < height; i++) {
if (prediction) {
var cx = contexts[pseudoPixelContext];
if (!cx)
contexts[pseudoPixelContext] = cx = {index: 0, mps: 0};
break; // OOB
currentWidth += deltaWidth;
totalWidth += currentWidth;
var bitmap;
if (refinement) {
// 6.5.8.2 Refinement/aggregate-coded symbol bitmap
var numberOfInstances = decodeInteger(contextCache, 'IAAI', decoder);
if (numberOfInstances > 1)
error('JBIG2 error: number of instances > 1 is not supported');
var symbolId = decodeIAID(contextCache, decoder, symbolCodeLength);
var rdx = decodeInteger(contextCache, 'IARDX', decoder); // 6.4.11.3
var rdy = decodeInteger(contextCache, 'IARDY', decoder); // 6.4.11.4
var symbol = symbolId < symbols.length ? symbols[symbolId] :
newSymbols[symbolId - symbols.length];
bitmap = decodeRefinement(currentWidth, currentHeight,
refinementTemplateIndex, symbol, rdx, rdy, false, refinementAt,
decodingContext);
} else {
// 6.5.8.1 Direct-coded symbol bitmap
bitmap = decodeBitmap(false, currentWidth, currentHeight,
templateIndex, false, null, at, decodingContext);
}
newSymbols.push(bitmap);
}
}
// 6.5.10 Exported symbols
var exportedSymbols = [];
var flags = [], currentFlag = false;
var totalSymbolsLength = symbols.length + numberOfNewSymbols;
while (flags.length < totalSymbolsLength) {
var runLength = decodeInteger(contextCache, 'IAEX', decoder);
while (runLength--)
flags.push(currentFlag);
currentFlag = !currentFlag;
}
for (var i = 0, ii = symbols.length; i < ii; i++)
if (flags[i]) exportedSymbols.push(symbols[i]);
for (var j = 0; j < numberOfNewSymbols; i++, j++)
if (flags[i]) exportedSymbols.push(newSymbols[j]);
return exportedSymbols;
}
function decodeTextRegion(huffman, refinement, width, height,
defaultPixelValue, numberOfSymbolInstances,
stripSize, inputSymbols, symbolCodeLength,
transposed, dsOffset, referenceCorner,
combinationOperator, huffmanTables,
refinementTemplateIndex, refinementAt,
decodingContext) {
if (huffman)
error('JBIG2 error: huffman is not supported');
// Prepare bitmap
var bitmap = [];
for (var i = 0; i < height; i++) {
var row = new Uint8Array(width);
if (defaultPixelValue) {
for (var j = 0; j < width; j++)
row[j] = defaultPixelValue;
}
bitmap.push(row);
}
var decoder = decodingContext.decoder;
var contextCache = decodingContext.contextCache;
if (transposed)
error('JBIG2 error: transposed is not supported');
var stripT = -decodeInteger(contextCache, 'IADT', decoder); // 6.4.6
var firstS = 0;
var i = 0;
while (i < numberOfSymbolInstances) {
var deltaT = decodeInteger(contextCache, 'IADT', decoder); // 6.4.6
stripT += deltaT;
var deltaFirstS = decodeInteger(contextCache, 'IAFS', decoder); // 6.4.7
firstS += deltaFirstS;
var currentS = firstS;
do {
var currentT = stripSize == 1 ? 0 :
decodeInteger(contextCache, 'IAIT', decoder); // 6.4.9
var t = stripSize * stripT + currentT;
var symbolId = decodeIAID(contextCache, decoder, symbolCodeLength);
var applyRefinement = refinement &&
decodeInteger(contextCache, 'IARI', decoder);
var symbolBitmap = inputSymbols[symbolId];
var symbolWidth = symbolBitmap[0].length;
var symbolHeight = symbolBitmap.length;
if (applyRefinement) {
var rdw = decodeInteger(contextCache, 'IARDW', decoder); // 6.4.11.1
var rdh = decodeInteger(contextCache, 'IARDH', decoder); // 6.4.11.2
var rdx = decodeInteger(contextCache, 'IARDX', decoder); // 6.4.11.3
var rdy = decodeInteger(contextCache, 'IARDY', decoder); // 6.4.11.4
symbolWidth += rdw;
symbolHeight += rdh;
symbolBitmap = decodeRefinement(symbolWidth, symbolHeight,
refinementTemplateIndex, symbolBitmap, (rdw >> 1) + rdx,
(rdh >> 1) + rdy, false, refinementAt,
decodingContext);
}
var offsetT = t - ((referenceCorner & 1) ? 0 : symbolHeight);
var offsetS = currentS - ((referenceCorner & 2) ? symbolWidth : 0);
for (var t2 = 0; t2 < symbolHeight; t2++) {
var row = bitmap[offsetT + t2];
if (!row) continue;
var symbolRow = symbolBitmap[t2];
switch (combinationOperator) {
case 0: // OR
for (var s2 = 0; s2 < symbolWidth; s2++)
row[offsetS + s2] |= symbolRow[s2];
break;
case 2: // XOR
for (var s2 = 0; s2 < symbolWidth; s2++)
row[offsetS + s2] ^= symbolRow[s2];
break;
default:
error('JBIG2 error: operator ' + combinationOperator +
' is not supported');
}
}
currentS += symbolWidth - 1;
i++;
var deltaS = decodeInteger(contextCache, 'IADS', decoder); // 6.4.8
if (deltaS == null)
break; // OOB
currentS += deltaS + dsOffset;
} while (true);
}
return bitmap;
}
function readSegmentHeader(data, start) {
var segmentHeader = {};
segmentHeader.number = readUint32(data, start);
var flags = data[start + 4];
var segmentType = flags & 0x3F;
if (!SegmentTypes[segmentType])
error('JBIG2 error: invalid segment type: ' + segmentType);
segmentHeader.type = segmentType;
segmentHeader.typeName = SegmentTypes[segmentType];
segmentHeader.deferredNonRetain = !!(flags & 0x80);
var pageAssociationFieldSize = !!(flags & 0x40);
var referredFlags = data[start + 5];
var referredToCount = (referredFlags >> 5) & 7;
var retainBits = [referredFlags & 31];
var position = start + 6;
if (referredFlags == 7) {
referredToCount = readInt32(data, position - 1) & 0x1FFFFFFF;
position += 3;
var bytes = (referredToCount + 7) >> 3;
retainBits[0] = data[position++];
while (--bytes > 0) {
retainBits.push(data[position++]);
}
} else if (referredFlags == 5 || referredFlags == 6)
error('JBIG2 error: invalid referred-to flags');
segmentHeader.retainBits = retainBits;
var referredToSegmentNumberSize = segmentHeader.number <= 256 ? 1 :
segmentHeader.number <= 65536 ? 2 : 4;
var referredTo = [];
for (var i = 0; i < referredToCount; i++) {
var number = referredToSegmentNumberSize == 1 ? data[position] :
referredToSegmentNumberSize == 2 ? readUint16(data, position) :
readUint32(data, position);
referredTo.push(number);
position += referredToSegmentNumberSize;
}
segmentHeader.referredTo = referredTo;
if (!pageAssociationFieldSize)
segmentHeader.pageAssociation = data[position++];
else {
segmentHeader.pageAssociation = readUint32(data, position);
position += 4;
}
segmentHeader.length = readUint32(data, position);
if (segmentHeader.length == 0xFFFFFFFF)
error('JBIG2 error: unknown segment length is not supported');
position += 4;
segmentHeader.headerEnd = position;
return segmentHeader;
}
function readSegments(header, data, start, end) {
var segments = [];
var position = start;
while (position < end) {
var segmentHeader = readSegmentHeader(data, position);
position = segmentHeader.headerEnd;
var segment = {
header: segmentHeader,
data: data
};
if (!header.randomAccess) {
segment.start = position;
position += segmentHeader.length;
segment.end = position;
}
segments.push(segment);
if (segmentHeader.type == 51)
break; // end of file is found
}
if (header.randomAccess) {
for (var i = 0, ii = segments.length; i < ii; i++) {
segments[i].start = position;
position += segments[i].header.length;
segments[i].end = position;
}
}
return segments;
}
// 7.4.1 Region segment information field
function readRegionSegmentInformation(data, start) {
return {
width: readUint32(data, start),
height: readUint32(data, start + 4),
x: readUint32(data, start + 8),
y: readUint32(data, start + 12),
combinationOperator: data[start + 16] & 7
};
}
var RegionSegmentInformationFieldLength = 17;
function processSegment(segment, visitor) {
var header = segment.header;
var data = segment.data, position = segment.start, end = segment.end;
var args;
switch (header.type) {
case 0: // SymbolDictionary
// 7.4.2 Symbol dictionary segment syntax
var dictionary = {};
var dictionaryFlags = readUint16(data, position); // 7.4.2.1.1
dictionary.huffman = !!(dictionaryFlags & 1);
dictionary.refinement = !!(dictionaryFlags & 2);
dictionary.huffmanDHSelector = (dictionaryFlags >> 2) & 3;
dictionary.huffmanDWSelector = (dictionaryFlags >> 4) & 3;
referredSegments,
data, start, end) {
var huffmanTables;
if (dictionary.huffman)
error('JBIG2 error: huffman is not supported');
// Combines exported symbols from all referred segments
var symbols = this.symbols;
if (!symbols)
this.symbols = symbols = {};
var inputSymbols = [];
for (var i = 0, ii = referredSegments.length; i < ii; i++)
inputSymbols = inputSymbols.concat(symbols[referredSegments[i]]);
var decodingContext = new DecodingContext(data, start, end);
symbols[currentSegment] = decodeSymbolDictionary(dictionary.huffman,
dictionary.refinement, inputSymbols, dictionary.numberOfNewSymbols,
dictionary.numberOfExportedSymbols, huffmanTables,
dictionary.template, dictionary.at,
dictionary.refinementTemplate, dictionary.refinementAt,
decodingContext);
},
onImmediateTextRegion:
function SimpleSegmentVisitor_onImmediateTextRegion(region,
referredSegments,
data, start, end) {
var regionInfo = region.info;
var huffmanTables;
// Combines exported symbols from all referred segments
var symbols = this.symbols;
var inputSymbols = [];
for (var i = 0, ii = referredSegments.length; i < ii; i++)
inputSymbols = inputSymbols.concat(symbols[referredSegments[i]]);
var symbolCodeLength = log2(inputSymbols.length);
var decodingContext = new DecodingContext(data, start, end);
var bitmap = decodeTextRegion(region.huffman, region.refinement,
regionInfo.width, regionInfo.height, region.defaultPixelValue,
region.numberOfSymbolInstances, region.stripSize, inputSymbols,
symbolCodeLength, region.transposed, region.dsOffset,
region.referenceCorner, region.combinationOperator, huffmanTables,
region.refinementTemplate, region.refinementAt, decodingContext);
this.drawBitmap(regionInfo, bitmap);
},
onImmediateLosslessTextRegion:
function SimpleSegmentVisitor_onImmediateLosslessTextRegion() {
this.onImmediateTextRegion.apply(this, arguments);
}
};
function Jbig2Image() {}
Jbig2Image.prototype = {
parseChunks: function Jbig2Image_parseChunks(chunks) {
return parseJbig2Chunks(chunks);
}
};
return Jbig2Image;
})();
var bidi = PDFJS.bidi = (function bidiClosure() {
// Character types for symbols from 0000 to 00FF.
var baseTypes = [
'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'S', 'B', 'S', 'WS',
'B', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN',
'BN', 'BN', 'B', 'B', 'B', 'S', 'WS', 'ON', 'ON', 'ET', 'ET', 'ET', 'ON',
'ON', 'ON', 'ON', 'ON', 'ON', 'CS', 'ON', 'CS', 'ON', 'EN', 'EN', 'EN',
'EN', 'EN', 'EN', 'EN', 'EN', 'EN', 'EN', 'ON', 'ON', 'ON', 'ON', 'ON',
'ON', 'ON', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L',
'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'ON', 'ON',
'ON', 'ON', 'ON', 'ON', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L',
'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L',
'L', 'ON', 'ON', 'ON', 'ON', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'B', 'BN',
'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN',
'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN', 'BN',
'BN', 'CS', 'ON', 'ET', 'ET', 'ET', 'ET', 'ON', 'ON', 'ON', 'ON', 'L', 'ON',
'ON', 'ON', 'ON', 'ON', 'ET', 'ET', 'EN', 'EN', 'ON', 'L', 'ON', 'ON', 'ON',
'EN', 'L', 'ON', 'ON', 'ON', 'ON', 'ON', 'L', 'L', 'L', 'L', 'L', 'L', 'L',
'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L',
'L', 'ON', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L',
'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L',
'L', 'L', 'L', 'ON', 'L', 'L', 'L', 'L', 'L', 'L', 'L', 'L'
];
// Character types for symbols from 0600 to 06FF
var arabicTypes = [
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'CS', 'AL', 'ON', 'ON', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM',
'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AN', 'AN', 'AN', 'AN', 'AN', 'AN', 'AN', 'AN', 'AN',
'AN', 'ET', 'AN', 'AN', 'AL', 'AL', 'AL', 'NSM', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM',
'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'NSM', 'ON', 'NSM',
'NSM', 'NSM', 'NSM', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL',
'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL', 'AL'
];
function isOdd(i) {
return (i & 1) != 0;
}
function isEven(i) {
return (i & 1) == 0;
}
function findUnequal(arr, start, value) {
var j;
for (var j = start, jj = arr.length; j < jj; ++j) {
if (arr[j] != value)
return j;
}
return j;
}
function setValues(arr, start, end, value) {
for (var j = start; j < end; ++j) {
arr[j] = value;
}
}
function reverseValues(arr, start, end) {
for (var i = start, j = end - 1; i < j; ++i, --j) {
var temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
function mirrorGlyphs(c) {
/*
# BidiMirroring-1.txt
0028; 0029 # LEFT PARENTHESIS
0029; 0028 # RIGHT PARENTHESIS
003C; 003E # LESS-THAN SIGN
003E; 003C # GREATER-THAN SIGN
005B; 005D # LEFT SQUARE BRACKET
005D; 005B # RIGHT SQUARE BRACKET
007B; 007D # LEFT CURLY BRACKET
007D; 007B # RIGHT CURLY BRACKET
00AB; 00BB # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
00BB; 00AB # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
*/
switch (c) {
case '(':
return ')';
case ')':
return '(';
case '<':
return '>';
case '>':
return '<';
case ']':
return '[';
case '[':
return ']';
case '}':
return '{';
case '{':
return '}';
case '\u00AB':
return '\u00BB';
case '\u00BB':
return '\u00AB';
default:
return c;
}
}
function BidiResult(str, isLTR) {
this.str = str;
this.ltr = isLTR;
}
function bidi(str, startLevel) {
var isLTR = true;
var strLength = str.length;
if (strLength == 0)
return new BidiResult(str, ltr);
// get types, fill arrays
var
var
var
var
chars = [];
types = [];
oldtypes = [];
numBidi = 0;
}
if (startLevel == -1) {
if ((strLength / numBidi) < 0.3) {
isLTR = true;
startLevel = 0;
} else {
isLTR = false;
startLevel = 1;
}
}
var levels = [];
for (var i = 0; i < strLength; ++i) {
levels[i] = startLevel;
}
/*
X1-X10: skip most of this, since we are NOT doing the embeddings.
*/
var e = isOdd(startLevel) ? 'R' : 'L';
var sor = e;
var eor = sor;
/*
W1. Examine each non-spacing mark (NSM) in the level run, and change the
type of the NSM to the type of the previous character. If the NSM is at the
start of the level run, it will get the type of sor.
*/
var lastType = sor;
for (var i = 0; i < strLength; ++i) {
if (types[i] == 'NSM')
types[i] = lastType;
else
lastType = types[i];
}
/*
W2. Search backwards from each instance of a European number until the
first strong type (R, L, AL, or sor) is found. If an AL is found, change
the type of the European number to Arabic number.
*/
var lastType = sor;
for (var i = 0; i < strLength; ++i) {
var t = types[i];
if (t == 'EN')
types[i] = (lastType == 'AL') ? 'AN' : 'EN';
else if (t == 'R' || t == 'L' || t == 'AL')
lastType = t;
}
/*
W3. Change all ALs to R.
*/
for (var i = 0; i < strLength; ++i) {
var t = types[i];
if (t == 'AL')
types[i] = 'R';
}
/*
W4. A single European separator between two European numbers changes to a
European number. A single common separator between two numbers of the same
type changes to that type:
*/
//
//
var JpegImage =
"use strict";
var dctZigZag
0,
1, 8,
16, 9, 2,
3, 10, 17,
32, 25, 18,
5, 12, 19,
48, 41, 34,
7, 14, 21,
57, 50, 43,
23, 30, 37,
59, 52, 45,
39, 46, 53,
61, 54, 47,
55, 62,
63
]);
var
var
var
var
var
var
var
var
(function jpegImage() {
= new Int32Array([
dctCos1 =
dctSin1 =
dctCos3 =
dctSin3 =
dctCos6 =
dctSin6 =
dctSqrt2 =
dctSqrt1d2
24,
11,
26,
27,
28,
36,
44,
38,
60,
4,
33,
20,
35,
29,
51,
31,
4017
799
3406
2276
1567
3784
5793
= 2896
40,
13, 6,
42, 49, 56,
22, 15,
58,
//
//
//
//
//
//
//
//
cos(pi/16)
sin(pi/16)
cos(3*pi/16)
sin(3*pi/16)
cos(6*pi/16)
sin(6*pi/16)
sqrt(2)
sqrt(2) / 2
function constructor() {
}
function buildHuffmanTable(codeLengths, values) {
var k = 0, code = [], i, j, length = 16;
while (length > 0 && !codeLengths[length - 1])
length--;
code.push({children: [], index: 0});
var p = code[0], q;
for (i = 0; i < length; i++) {
for (j = 0; j < codeLengths[i]; j++) {
p = code.pop();
p.children[p.index] = values[k];
while (p.index > 0) {
p = code.pop();
}
p.index++;
code.push(p);
while (code.length <= i) {
code.push(q = {children: [], index: 0});
p.children[p.index] = q.children;
p = q;
}
k++;
}
if (i + 1 < length) {
// p here points to last code
code.push(q = {children: [], index: 0});
p.children[p.index] = q.children;
p = q;
}
}
return code[0].children;
}
function decodeScan(data, offset,
frame, components, resetInterval,
spectralStart, spectralEnd,
successivePrev, successive) {
var precision = frame.precision;
var samplesPerLine = frame.samplesPerLine;
var scanLines = frame.scanLines;
var mcusPerLine = frame.mcusPerLine;
var progressive = frame.progressive;
var maxH = frame.maxH, maxV = frame.maxV;
var startOffset = offset, bitsData = 0, bitsCount = 0;
function readBit() {
if (bitsCount > 0) {
bitsCount--;
return (bitsData >> bitsCount) & 1;
}
bitsData = data[offset++];
if (bitsData == 0xFF) {
var nextByte = data[offset++];
if (nextByte) {
throw "unexpected marker: " + ((bitsData << 8) | nextByte).toString(16
);
}
// unstuff 0
}
bitsCount = 7;
return bitsData >>> 7;
}
function decodeHuffman(tree) {
var node = tree, bit;
while ((bit = readBit()) !== null) {
node = node[bit];
if (typeof node === 'number')
return node;
if (typeof node !== 'object')
throw "invalid huffman sequence";
}
return null;
}
function receive(length) {
var n = 0;
while (length > 0) {
var bit = readBit();
if (bit === null) return;
n = (n << 1) | bit;
length--;
}
return n;
}
function receiveAndExtend(length) {
var n = receive(length);
if (n >= 1 << (length - 1))
return n;
return n + (-1 << length) + 1;
}
function decodeBaseline(component, zz) {
var t = decodeHuffman(component.huffmanTableDC);
var diff = t === 0 ? 0 : receiveAndExtend(t);
zz[0]= (component.pred += diff);
var k = 1;
while (k < 64) {
var rs = decodeHuffman(component.huffmanTableAC);
var s = rs & 15, r = rs >> 4;
if (s === 0) {
if (r < 15)
break;
k += 16;
continue;
}
k += r;
var z = dctZigZag[k];
zz[z] = receiveAndExtend(s);
k++;
}
}
function decodeDCFirst(component, zz) {
var t = decodeHuffman(component.huffmanTableDC);
var diff = t === 0 ? 0 : (receiveAndExtend(t) << successive);
zz[0] = (component.pred += diff);
}
function decodeDCSuccessive(component, zz) {
zz[0] |= readBit() << successive;
}
var eobrun = 0;
function decodeACFirst(component, zz) {
if (eobrun > 0) {
eobrun--;
return;
}
var k = spectralStart, e = spectralEnd;
while (k <= e) {
var rs = decodeHuffman(component.huffmanTableAC);
var s = rs & 15, r = rs >> 4;
if (s === 0) {
if (r < 15) {
eobrun = receive(r) + (1 << r) - 1;
break;
}
k += 16;
continue;
}
k += r;
var z = dctZigZag[k];
zz[z] = receiveAndExtend(s) * (1 << successive);
k++;
}
}
var successiveACState = 0, successiveACNextValue;
function decodeACSuccessive(component, zz) {
var k = spectralStart, e = spectralEnd, r = 0;
while (k <= e) {
var z = dctZigZag[k];
switch (successiveACState) {
case 0: // initial state
var rs = decodeHuffman(component.huffmanTableAC);
var s = rs & 15, r = rs >> 4;
if (s === 0) {
if (r < 15) {
eobrun = receive(r) + (1 << r);
successiveACState = 4;
} else {
r = 16;
successiveACState = 1;
}
} else {
if (s !== 1)
throw "invalid ACn encoding";
successiveACNextValue = receiveAndExtend(s);
successiveACState = r ? 2 : 3;
}
continue;
case 1: // skipping r zero items
case 2:
if (zz[z])
zz[z] += (readBit() << successive);
else {
r--;
if (r === 0)
successiveACState = successiveACState == 2 ? 3 : 0;
}
break;
case 3: // set value for a zero item
if (zz[z])
zz[z] += (readBit() << successive);
else {
zz[z] = successiveACNextValue << successive;
successiveACState = 0;
}
break;
case 4: // eob
if (zz[z])
zz[z] += (readBit() << successive);
break;
}
k++;
}
if (successiveACState === 4) {
eobrun--;
if (eobrun === 0)
successiveACState = 0;
}
}
function decodeMcu(component, decode, mcu, row, col) {
var mcuRow = (mcu / mcusPerLine) | 0;
var mcuCol = mcu % mcusPerLine;
var blockRow = mcuRow * component.v + row;
var blockCol = mcuCol * component.h + col;
decode(component, component.blocks[blockRow][blockCol]);
}
function decodeBlock(component, decode, mcu) {
var blockRow = (mcu / component.blocksPerLine) | 0;
var blockCol = mcu % component.blocksPerLine;
decode(component, component.blocks[blockRow][blockCol]);
}
var componentsLength = components.length;
var component, i, j, k, n;
var decodeFn;
if (progressive) {
if (spectralStart === 0)
decodeFn = successivePrev === 0 ? decodeDCFirst : decodeDCSuccessive;
else
decodeFn = successivePrev === 0 ? decodeACFirst : decodeACSuccessive;
} else {
decodeFn = decodeBaseline;
}
var mcu = 0, marker;
var mcuExpected;
if (componentsLength == 1) {
mcuExpected = components[0].blocksPerLine * components[0].blocksPerColumn;
} else {
mcuExpected = mcusPerLine * frame.mcusPerColumn;
}
if (!resetInterval) resetInterval = mcuExpected;
var h, v;
while (mcu < mcuExpected) {
// reset interval stuff
for (i = 0; i < componentsLength; i++)
components[i].pred = 0;
eobrun = 0;
if (componentsLength == 1) {
component = components[0];
for (n = 0; n < resetInterval; n++) {
decodeBlock(component, decodeFn, mcu);
mcu++;
}
} else {
for (n = 0; n < resetInterval; n++) {
for (i = 0; i < componentsLength; i++) {
component = components[i];
h = component.h;
v = component.v;
for (j = 0; j < v; j++) {
for (k = 0; k < h; k++) {
decodeMcu(component, decodeFn, mcu, j, k);
}
}
}
mcu++;
}
}
// find marker
bitsCount = 0;
marker = (data[offset] << 8) | data[offset + 1];
if (marker <= 0xFF00) {
throw "marker was not found";
}
stage 4
= (dctSqrt2 * p[0 + row] + 128) >> 8;
= (dctSqrt2 * p[4 + row] + 128) >> 8;
= p[2 + row];
= p[6 + row];
= (dctSqrt1d2 * (p[1 + row] - p[7 + row]) + 128) >> 8;
= (dctSqrt1d2 * (p[1 + row] + p[7 + row]) + 128) >> 8;
= p[3 + row] << 4;
=
=
=
=
=
=
=
=
v0
v0
v1
v1
v2
v2
v3
v3
+
+
+
+
-
v7;
v7;
v6;
v6;
v5;
v5;
v4;
v4;
}
// inverse DCT on columns
for (i = 0; i < 8; ++i) {
var col = i;
// check for all-zero AC coefficients
if (p[1*8 + col] == 0 && p[2*8 + col] == 0 && p[3*8 + col] == 0 &&
p[4*8 + col] == 0 && p[5*8 + col] == 0 && p[6*8 + col] == 0 &&
p[7*8 + col] == 0) {
t = (dctSqrt2 * dataIn[i+0] + 8192) >> 14;
p[0*8 + col] = t;
p[1*8 + col] = t;
p[2*8 + col] = t;
p[3*8 + col] = t;
p[4*8 + col] = t;
p[5*8 + col] = t;
p[6*8 + col] = t;
p[7*8 + col] = t;
continue;
}
//
v0
v1
v2
v3
v4
v7
v5
v6
stage 4
= (dctSqrt2 * p[0*8 + col] + 2048) >>
= (dctSqrt2 * p[4*8 + col] + 2048) >>
= p[2*8 + col];
= p[6*8 + col];
= (dctSqrt1d2 * (p[1*8 + col] - p[7*8
= (dctSqrt1d2 * (p[1*8 + col] + p[7*8
= p[3*8 + col];
= p[5*8 + col];
12;
12;
+ col]) + 2048) >> 12;
+ col]) + 2048) >> 12;
// stage 3
t = (v0 - v1 + 1) >> 1;
v0 = (v0 + v1 + 1) >> 1;
v1 = t;
t = (v2 * dctSin6 + v3 * dctCos6 + 2048) >> 12;
v2 = (v2 * dctCos6 - v3 * dctSin6 + 2048) >> 12;
v3 = t;
t = (v4 - v6 + 1) >> 1;
v4 = (v4 + v6 + 1) >> 1;
v6 = t;
t = (v7 + v5 + 1) >> 1;
v5 = (v7 - v5 + 1) >> 1;
v7 = t;
// stage 2
t = (v0 - v3 + 1) >> 1;
v0 = (v0 + v3 + 1) >> 1;
v3 = t;
t = (v1 - v2 + 1) >> 1;
v1 = (v1 + v2 + 1) >> 1;
v2 = t;
t = (v4 * dctSin3 + v7 * dctCos3 + 2048) >> 12;
v4 = (v4 * dctCos3 - v7 * dctSin3 + 2048) >> 12;
v7 = t;
t = (v5 * dctSin1 + v6 * dctCos1 + 2048) >> 12;
v5 = (v5 * dctCos1 - v6 * dctSin1 + 2048) >> 12;
v6 = t;
// stage 1
p[0*8 + col]
p[7*8 + col]
p[1*8 + col]
p[6*8 + col]
p[2*8 + col]
p[5*8 + col]
p[3*8 + col]
p[4*8 + col]
=
=
=
=
=
=
=
=
v0
v0
v1
v1
v2
v2
v3
v3
+
+
+
+
-
v7;
v7;
v6;
v6;
v5;
v5;
v4;
v4;
}
// convert to 8-bit integers
for (i = 0; i < 64; ++i) {
var sample = 128 + ((p[i] + 8) >> 4);
dataOut[i] = sample < 0 ? 0 : sample > 0xFF ? 0xFF : sample;
}
}
var i, j;
for (var blockRow = 0; blockRow < blocksPerColumn; blockRow++) {
var scanLine = blockRow << 3;
if (frame.components.hasOwnProperty(componentId)) {
component = frame.components[componentId];
var blocksPerLine = Math.ceil(Math.ceil(frame.samplesPerLine / 8) *
component.h / maxH);
var blocksPerColumn = Math.ceil(Math.ceil(frame.scanLines / 8) * co
mponent.v / maxV);
var blocksPerLineForMcu = mcusPerLine * component.h;
var blocksPerColumnForMcu = mcusPerColumn * component.v;
var blocks = [];
for (var i = 0; i < blocksPerColumnForMcu; i++) {
var row = [];
for (var j = 0; j < blocksPerLineForMcu; j++)
row.push(new Int32Array(64));
blocks.push(row);
}
component.blocksPerLine = blocksPerLine;
component.blocksPerColumn = blocksPerColumn;
component.blocks = blocks;
}
}
frame.maxH = maxH;
frame.maxV = maxV;
frame.mcusPerLine = mcusPerLine;
frame.mcusPerColumn = mcusPerColumn;
}
var jfif = null;
var adobe = null;
var pixels = null;
var frame, resetInterval;
var quantizationTables = [], frames = [];
var huffmanTablesAC = [], huffmanTablesDC = [];
var fileMarker = readUint16();
if (fileMarker != 0xFFD8) { // SOI (Start of Image)
throw "SOI not found";
}
fileMarker = readUint16();
while (fileMarker != 0xFFD9) { // EOI (End of image)
var i, j, l;
switch(fileMarker) {
case 0xFFE0: // APP0 (Application Specific)
case 0xFFE1: // APP1
case 0xFFE2: // APP2
case 0xFFE3: // APP3
case 0xFFE4: // APP4
case 0xFFE5: // APP5
case 0xFFE6: // APP6
case 0xFFE7: // APP7
case 0xFFE8: // APP8
case 0xFFE9: // APP9
case 0xFFEA: // APP10
case 0xFFEB: // APP11
case 0xFFEC: // APP12
case 0xFFED: // APP13
case 0xFFEE: // APP14
case 0xFFEF: // APP15
case 0xFFFE: // COM (Comment)
var appData = readDataBlock();
if (fileMarker === 0xFFE0) {
if (appData[0] === 0x4A && appData[1] === 0x46 && appData[2] === 0
x49 &&
appData[3] === 0x46 && appData[4] === 0) { // 'JFIF\x00'
jfif = {
version: { major: appData[5], minor: appData[6] },
densityUnits: appData[7],
xDensity: (appData[8] << 8) | appData[9],
yDensity: (appData[10] << 8) | appData[11],
thumbWidth: appData[12],
thumbHeight: appData[13],
thumbData: appData.subarray(14, 14 + 3 * appData[12] * appData
[13])
};
}
}
// TODO APP1 - Exif
if (fileMarker === 0xFFEE) {
if (appData[0] === 0x41 && appData[1] === 0x64 && appData[2] === 0
x6F &&
appData[3] === 0x62 && appData[4] === 0x65 && appData[5] === 0)
{ // 'Adobe\x00'
adobe = {
version: appData[6],
flags0: (appData[7] << 8) | appData[8],
flags1: (appData[9] << 8) | appData[10],
transformCode: appData[11]
};
}
}
break;
case 0xFFDB: // DQT (Define Quantization Tables)
var quantizationTablesLength = readUint16();
var quantizationTablesEnd = quantizationTablesLength + offset - 2;
while (offset < quantizationTablesEnd) {
var quantizationTableSpec = data[offset++];
var tableData = new Int32Array(64);
if ((quantizationTableSpec >> 4) === 0) { // 8 bit values
for (j = 0; j < 64; j++) {
var z = dctZigZag[j];
tableData[z] = data[offset++];
}
} else if ((quantizationTableSpec >> 4) === 1) { //16 bit
for (j = 0; j < 64; j++) {
var z = dctZigZag[j];
tableData[z] = readUint16();
}
} else
throw "DQT: invalid table spec";
quantizationTables[quantizationTableSpec & 15] = tableData;
}
break;
case 0xFFC0: // SOF0 (Start of Frame, Baseline DCT)
case 0xFFC2: // SOF2 (Start of Frame, Progressive DCT)
readUint16(); // skip data length
frame = {};
frame.progressive = (fileMarker === 0xFFC2);
frame.precision = data[offset++];
frame.scanLines = readUint16();
frame.samplesPerLine = readUint16();
frame.components = {};
frame.componentsOrder = [];
var componentsCount = data[offset++], componentId;
var maxH = 0, maxV = 0;
for (i = 0; i < componentsCount; i++) {
componentId = data[offset];
var h = data[offset + 1] >> 4;
var v = data[offset + 1] & 15;
var qId = data[offset + 2];
frame.componentsOrder.push(componentId);
frame.components[componentId] = {
h: h,
v: v,
quantizationTable: quantizationTables[qId]
};
offset += 3;
}
prepareComponents(frame);
frames.push(frame);
break;
case 0xFFC4: // DHT (Define Huffman Tables)
var huffmanLength = readUint16();
for (i = 2; i < huffmanLength;) {
var huffmanTableSpec = data[offset++];
var codeLengths = new Uint8Array(16);
var codeLengthSum = 0;
for (j = 0; j < 16; j++, offset++)
codeLengthSum += (codeLengths[j] = data[offset]);
var huffmanValues = new Uint8Array(codeLengthSum);
for (j = 0; j < codeLengthSum; j++, offset++)
huffmanValues[j] = data[offset];
i += 17 + codeLengthSum;
((huffmanTableSpec >> 4) === 0 ?
huffmanTablesDC : huffmanTablesAC)[huffmanTableSpec & 15] =
buildHuffmanTable(codeLengths, huffmanValues);
}
break;
case 0xFFDD: // DRI (Define Restart Interval)
readUint16(); // skip data length
resetInterval = readUint16();
break;
case 0xFFDA: // SOS (Start of Scan)
var scanLength = readUint16();
var selectorsCount = data[offset++];
var components = [], component;
for (i = 0; i < selectorsCount; i++) {
component = frame.components[data[offset++]];
var tableSpec = data[offset++];
component.huffmanTableDC = huffmanTablesDC[tableSpec >> 4];
component.huffmanTableAC = huffmanTablesAC[tableSpec & 15];
components.push(component);
}
var spectralStart = data[offset++];
var spectralEnd = data[offset++];
var successiveApproximation = data[offset++];
=
=
=
=
Y;
Y;
Y;
255;
}
}
break;
case 3:
for (y = 0; y < height; y++) {
for (x = 0; x < width; x++) {
R = data[i++];
G = data[i++];
B = data[i++];
imageDataArray[j++] = R;
imageDataArray[j++] = G;
imageDataArray[j++] = B;
imageDataArray[j++] = 255;
}
}
break;
case 4:
for (y = 0; y < height; y++) {
for (x = 0; x < width; x++) {
C = data[i++];
M = data[i++];
Y = data[i++];
K = data[i++];
R = 255 - clampTo8bit(C * (1 - K / 255) + K);
G = 255 - clampTo8bit(M * (1 - K / 255) + K);
B = 255 - clampTo8bit(Y * (1 - K / 255) + K);
imageDataArray[j++]
imageDataArray[j++]
imageDataArray[j++]
imageDataArray[j++]
=
=
=
=
R;
G;
B;
255;
}
}
break;
default:
throw 'Unsupported color mode';
}
}
};
return constructor;
})();
}).call((typeof window === 'undefined') ? this : window);